从App Store检索特定关键字的所有结果

时间:2018-05-13 11:35:37

标签: itunesconnect itunes itunes-sdk

我正在查看由Itunes提供的搜索API,但是我注意到它将限制设置为200,这意味着如果要返回的结果超过200,则只返回200。

我想要实现的是,我想搜索某些关键字并检索与此关键字相关的所有应用,是否可能?非常感谢!

2 个答案:

答案 0 :(得分:0)

以下是特定搜索请求的完全限定网址的示例:

•   To search for all Jack Johnson audio and video content (movies, podcasts, music, music videos, audiobooks, short films, and tv shows), your URL would look like the following:
    https://itunes.apple.com/search?term=jack+johnson

•   To search for all Jack Johnson audio and video content and return only the first 25 items, your URL would look like the following:
    https://itunes.apple.com/search?term=jack+johnson&limit=25

•   To search for only Jack Johnson music videos, your URL would look like the following:
    https://itunes.apple.com/search?term=jack+johnson&entity=musicVideo

•   To search for all Jim Jones audio and video content and return only the results from the Canada iTunes Store, your URL would look like the following:
    https://itunes.apple.com/search?term=jim+jones&country=ca

•   To search for applications titled “Yelp” and return only the results from the United States iTunes Store, your URL would look like the following:
    https://itunes.apple.com/search?term=yelp&country=us&entity=software

请参阅以下Apple文档:

https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/#searchexamples

在所有国家/地区的iOS应用上搜索:

https://itunes.apple.com/search?term=yelp&entity=software&limit=200

答案 1 :(得分:0)

听起来您要查找的术语是偏移量,您可以将其添加到搜索参数中,以查看 x 限制后的 x 个结果。

tt <- 
  covars %>% 
  group_by(ETHNICITY) %>% 
  Get_STATs()

例如,上面的搜索将为您提供接下来的 200 个结果(当然,假设您的搜索结果更多。)

应该适用于搜索端点,但不适用于根据此 post 的查找端点。