链接地址,以微博为例: https://apps.apple.com/cn/app/%E5%BE%AE%E5%8D%9A/id350962117 这里最后id后面的数字就是我们需要的appID。 通过应用商店的分享找到appID拷贝链接就可以找到appID 2. 根据应用appID,搜索Bundle ID https://itunes.apple.com/lookup?id=appID&country=对应国家代码 一般情况不需要country...
以BundleId获取APP信息:{ "resultCount":0, "results": [] } 上架后可以根据results里的version字段值,比较后提示更新。此方法也适用于多个APP共用同一套代码的情况。 根据APP的id从iTunes获取版本信息,对比更新 http://itunes.apple.com/cn/lookup?id=(YourAppID)适用在中国范围发布 http://itunes.apple.co...
获取app在 App Store上的json信息url 国外:https://itunes.apple.com/lookup?id=xxx国内:https://itunes.apple.com/cn/lookup?id=xxx 另外就是接口:https://itunes.apple.com/lookup?bundleId=com.**(你的套装id) 注意:上面的bundleId必须写成bundleId,不能写成 bundleid或者bundleID 我们要用到的接口如...
第一步是去获取appstore上你的应用的版本信息,需要用到的url #define APP_URL @"http://itunes.apple.com/lookup?id=662004496" (替换id即可),我看网上很多的例子都是同步获取信息,这样会阻塞主线程,我还是觉得异步的比较好。 -(void)checkVersion:(NSString*)appurl { ASIFormDataRequest* request=[ASIFormDataRe...
获取app在 App Store上的json信息url 国外:https://itunes.apple.com/lookup?id=xxx 国内:https://itunes.apple.com/cn/lookup?id=xxx 1. 2. 3. 另外就是接口:https://itunes.apple.com/lookup?bundleId=com.**(你的套装id) 注意:上面的bundleId必须写成bundleId,不能写成 bundleid或者bundleID ...
"http://itunes.apple.com/lookup?bundleId=(bundleID)" Additionally, if there have been any recent updates or changes in policies regarding version checking, we would greatly appreciate being directed to the relevant documentation or resources....
T orderId O object OrderLookupResponse Refund lookup E Get Refund History O object RefundHistoryResponse E Get Refund History V1Deprecated O object RefundLookupResponseDeprecated Subscription-renewal-date extension Extending the renewal date for auto-renewable subscriptions E Extend a Subscri...
E Look Up Order ID T orderId O object OrderLookupResponse Refund lookup E Get Refund History O object RefundHistoryResponse E Get Refund History V1Deprecated O object RefundLookupResponseDeprecated Subscription-renewal-date extension Extending the renewal date for auto-renewable subscriptio...
"method": "lookupSoftwareForBundleId", "params": { "Application": "TransporterApp", "ApplicationBundleId": "com.apple.TransporterApp", "BundleId": "com.myapp", "FrameworkVersions": { "com.apple.itunes.connect.ITunesConnectFoundation": "4.03 (1256)", ...
对比版本号一般是为了实现版本更新的功能,弹窗提示用户更新或者直接跳转的App Store。 获取应用在App Store中的版本信息 这里我们使用的是iTunes 的lookup 接口,前提是你已经发布到App Store。 获取应用在App Store中的id 下面是可以获取到App Store中的id 的两种方法 ...