链接以在 iPhone 的 App Store 中列出开发者的所有应用程序 [英] Link to list all apps by a developer in iPhone's App Store

查看:32
本文介绍了链接以在 iPhone 的 App Store 中列出开发者的所有应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的游戏中添加了链接,以便玩家可以评价和查看同一开发者的更多游戏.

I'm adding links in my game so players can rate and see more games of the same developer.

我正在使用的评分

itms-apps://itunes.apple.com/app/idMY_GAME_ID_IN_NUMBERS

它可以正常工作,立即打开 App Store.

and it works properly, opening the App Store straight away.

但是,我找不到可以在我的 iPhone 中打开 App Store 应用并显示同一开发者的所有游戏列表的链接.

However, I can't find a link that opens the App Store app in my iPhone and shows a list of all games by the same developer.

我已经试过了

http://appstore.com/STUDIO_NAME

它可以工作,但它首先打开设备网络浏览器,然后打开 App Store,我猜是因为 http 协议而不是 itms-apps.我宁愿像 rate 链接那样直接进入 App Store.

and it works, but it opens first the device web browser and then the App Store, I guess because of the http protocol instead of itms-apps. I'd rather going straight to the App Store like the rate link does.

知道如何实现它吗?

推荐答案

查看申请页面:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/us/app/APPNAME/idApp?mt=8&uo=4"]];
//APPNAME = Application name, idApp = Application unique id

来自开发者的查看应用

 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms://itunes.apple.com/us/artist/DEVNAME/idDEVID?uo=4"]];
 DEVNAME = Developer name in small chars, idDEVID = developer id, you can get it from iTunes.

更新 1

如果你有你的 App Id,那么你可以得到你的开发者 ID,

If you have your App Id then you can get your developer id like,

https://itunes.apple.com/lookup?id=YourAnyAppID

在网络浏览器中运行它,然后搜索 artistViewUrl 词作为响应,这将为您提供 URL,即 列出来自同一开发者的所有应用程序

Run this in web browser, and in response search for artistViewUrl word, this will give you URL, that List all APPs from Same Developer

请记住,将 http 替换为 itms 以停止重定向.

Just keep in mind that replace http to itms to stop redirection.

更新 2

列出开发者的所有应用,来自:appstore.com/{developername}.

List all app of a developer , from: appstore.com/{developername}.

获取我们的单个应用链接,来自:appstore.com/appname.当应用程序发布时,您可以获得这些东西.

Get our single app link, from: appstore.com/appname. You can get this things when app get published.

愿这有帮助.

HTH,享受编码吧!

这篇关于链接以在 iPhone 的 App Store 中列出开发者的所有应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆