如何将用户重定向到开发者 iTunes 帐户以查看他的其他应用

How to redirect user to the developer iTunes account to see his other apps

我正在尝试实现一个 "More apps" 按钮,该按钮可以重定向到同一开发人员在 iTunes 应用商店上发布的其他应用,例如实现我正在尝试对 Temple 进行的操作 运行开发者下一段代码就好了:

NSString* launchUrl = @"https://itunes.apple.com/ro/artist/imangi-studios-llc/id284899742";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: launchUrl]];

我的想法是,在我的情况下,开发人员还没有在 iTunes 上发布其他应用程序,所以我无法搜索 iTunes 并右键单击以复制开发人员 link...

所以我的问题是下一个: 如何获取构成最终 link:

的下两个信息

1-imangi-studios-llc

2-id284899742

  1. 公司/组织名称,可使用apple membercenter查找。 url 部分可能是通过将空的 space 替换为“-”并使字符串小写而组成的,例如:Imangi Studios LLC 变为 imangi- studios-llc

  2. iTunes connect, you will be able to see id. Just open newly created app in iTunes connect and check url. It will look like this https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/ng/app/284899742 添加应用后,id 将为 id284899742