ios 有没有办法在线搜索iOS应用商店?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/11837170/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Is there a way to search the iOS app store online?
提问by Asif Sheikh
I want to programmatically track my app's search ranking on Apple's app store. Is there any API or website to do this, outside of the 'App Store' app on my iPhone?
我想以编程方式跟踪我的应用在 Apple 应用商店中的搜索排名。除了 iPhone 上的“App Store”应用程序之外,是否有任何 API 或网站可以执行此操作?
回答by computingfreak
the following websites allow searching the iOS app store.
以下网站允许搜索 iOS 应用商店。
回答by Soshmo
I'm not sure how the exact ranking is reflected, but Apple now provides an JSON API call that you can make.
我不确定确切的排名是如何反映的,但 Apple 现在提供了一个您可以进行的 JSON API 调用。
https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/
https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/
This includes the ability to add in a callback parameter so you can even incorporate it into a web app without having to parse the results on your server.
这包括添加回调参数的能力,因此您甚至可以将其合并到 Web 应用程序中,而无需解析服务器上的结果。
The end API call would looks something like this:
最终的 API 调用看起来像这样:
http://itunes.apple.com/search?term=props&entity=software&country=US&callback=lkasdfj
http://itunes.apple.com/search?term=props&entity=software&country=US&callback=lkasdfj
回答by Scott Kimber
In case users are still looking for this. Apple finally made it possible to just use the apple.com website:
如果用户仍在寻找这个。Apple 终于让只使用 apple.com 网站成为可能:
https://www.apple.com/ios/app-store/Use the magnifying glass in the top right to search the apps.
https://www.apple.com/ios/app-store/使用右上角的放大镜搜索应用程序。
Once you find the app you want, there is a unique URL that you could use to grab information for tracking or other purposes as well.
找到所需的应用程序后,您可以使用一个唯一的 URL 来获取信息以进行跟踪或其他目的。
You can't do anything other than look at the app information at this time (no way to initiate a remote install to your phone or leave a review, that has to be done on the device)
此时除了查看应用信息之外,您无法做任何事情(无法启动远程安装到您的手机或留下评论,必须在设备上完成)
回答by Bahar Ali
You can use the google advance search option like
您可以使用谷歌高级搜索选项,如
site:itunes.apple.com/us/ "requires iOS 9 or later"
站点:itunes.apple.com/us/“需要 iOS 9 或更高版本”
and then scrap the response.
然后废弃响应。