Apple Music 搜索 API 速率限制
Apple Music Search API rate limit
我正在使用 Apple Music API to get track/album related information, Search for catalog resources 请求。
我想知道 API 使用是否有任何速率限制(请求限制)。我在他们的文档/Stack Overflow/Google 中找不到这方面的任何细节。我没有得到 429 状态码(到目前为止)。
是否与 iTunes 搜索中的限制相同API? (这里是 related question)
有人知道这方面的信息吗?
更新
请求
curl -i 'https://api.music.apple.com/v1/catalog/ru/search?term=hi+so' -H "Authorization: Bearer ..."
响应 headers:
没有"X-Rate-Limit"header.
显然它有所不同,但在格式为 "user-hour-lim:10;user-hour-rem:8;" 的响应 "X-Rate-Limit" 中有一个 header,其中包括您可以在一小时内发出多少请求。
编辑:感谢@Satsuki 强调某些端点可能没有 documentation 中所述的速率限制。
If you are requesting anything from the Apple Music Catalog, the request will hit Apple's cache first, which doesn't check your rate limit.
我正在使用 Apple Music API to get track/album related information, Search for catalog resources 请求。
我想知道 API 使用是否有任何速率限制(请求限制)。我在他们的文档/Stack Overflow/Google 中找不到这方面的任何细节。我没有得到 429 状态码(到目前为止)。
是否与 iTunes 搜索中的限制相同API? (这里是 related question)
有人知道这方面的信息吗?
更新
请求
curl -i 'https://api.music.apple.com/v1/catalog/ru/search?term=hi+so' -H "Authorization: Bearer ..."
响应 headers:
没有"X-Rate-Limit"header.
显然它有所不同,但在格式为 "user-hour-lim:10;user-hour-rem:8;" 的响应 "X-Rate-Limit" 中有一个 header,其中包括您可以在一小时内发出多少请求。
编辑:感谢@Satsuki 强调某些端点可能没有 documentation 中所述的速率限制。
If you are requesting anything from the Apple Music Catalog, the request will hit Apple's cache first, which doesn't check your rate limit.