直到最近,我才能够使用Pandora非官方REST API登录并获取我的Pandora站点,等等。
现在看来,pandora登录身份验证已经更改,不再像pandora非官方REST api wiki上描述的那样工作:
https://6xq.net/pandora-apidoc/rest/authentication/#user-login
之前发送此请求:
{
"existingAuthToken": null,
"keepLoggedIn": true,
"password": "secretpassword",
"username": "email@example.com"
}
导致一个有效的身份验证令牌。这似乎不再有效。登录Panadora时也会出现。com网站它现在登录时发出如下请求:
{
"existingAuthToken": null,
"username": "email@example.com",
"password": "secretpassword",
"keepLoggedIn": true,
"OZ_TC":"AFpt...",
"OZ_DT":"1ZsvOA5s...",
"OZ_SG":"K4@<b#IoWptdRcS:..."
}
其中“OZ_TC”、“OZ_DT”和“OZ_SG”似乎是一些必需的密钥或与时间相关的签名。
有人知道非官方的RESTAPI是否被破坏了吗?