Soundcloud 和 api 速率限制
Soundcloud and api rate limits
当前的 api 曲目点赞频率限制是多少?根据 documentation,唯一强制执行的限制是流媒体播放 api。
Global Rate Limit
We currently do not enforce any limit on the total number of calls made by a client application in aggregate.
我在尝试通过 PUT /me/favorites/track
端点点赞曲目时收到以下响应:
{
"errors": [{
"warning_level": "info",
"reason_phrase": "info: too many likes",
"release_at": "2016-08-03T12:20:38+00:00",
"acknowledge_url": "https://api.soundcloud.com/me/warning/favoriting"
}
]
}
是我错了还是public文档不准确?
你喜欢同一首歌吗?虽然可能没有 API 速率限制,但很可能限制用户可以喜欢曲目的次数,以防止错误计数。
你喜欢不同的曲目吗?这可能是为了防止机器人人为地喜欢曲目 - 他们希望用户手动点赞。
两者都不算作速率限制,所以我对它们不在 API 文档中并不感到惊讶。
这是为了防止假粉丝点赞 'number juicing'。参见
http://5chicago.com/features/how-to-become-a-fake-soundcloud-superstar/
当前的 api 曲目点赞频率限制是多少?根据 documentation,唯一强制执行的限制是流媒体播放 api。
Global Rate Limit
We currently do not enforce any limit on the total number of calls made by a client application in aggregate.
我在尝试通过 PUT /me/favorites/track
端点点赞曲目时收到以下响应:
{
"errors": [{
"warning_level": "info",
"reason_phrase": "info: too many likes",
"release_at": "2016-08-03T12:20:38+00:00",
"acknowledge_url": "https://api.soundcloud.com/me/warning/favoriting"
}
]
}
是我错了还是public文档不准确?
你喜欢同一首歌吗?虽然可能没有 API 速率限制,但很可能限制用户可以喜欢曲目的次数,以防止错误计数。
你喜欢不同的曲目吗?这可能是为了防止机器人人为地喜欢曲目 - 他们希望用户手动点赞。
两者都不算作速率限制,所以我对它们不在 API 文档中并不感到惊讶。
这是为了防止假粉丝点赞 'number juicing'。参见
http://5chicago.com/features/how-to-become-a-fake-soundcloud-superstar/