Amazon AppStore Deeplink管理订阅



我正在尝试从我的应用程序深入到Amazon Appstore的管理订阅页面,如果可能的话,我很好奇。我设法为Google Play商店和iOS App Store完成了此操作。

我已经在下面的链接上浏览了文档,但是没有提到链接到管理订阅页面。https://developer.amazon.com/docs/in-app-purchasing/iap-deep-linking-to-to-to-the-amazon-client.html

我最接近完成我想要的东西是打开此链接:http://www.amazon.com/gp/mas/your-account/myapps/yoursubscriptions

这将在设备浏览器上打开正确的页面,但是如果我可以在Amazon AppStore应用中打开"管理订阅"页面。

看起来仍然不可能,请参见https://forums.developer.amazon.com/questions/16617/link-to-manage-subscription.html

您作为开发人员无法使用的链接可以使客户能够管理其订阅。您需要让您的客户通过其设备上的Amazon应用程序之一或通过用户个人资料下的Amazon.com网站管理其订阅。

这是您想要的方案:" amzn://apps/library/订阅",此处的代码应起作用:

Intent intent = new Intent("android.intent.action.VIEW", Uri.parse("amzn://apps/library/subscriptions"));
startActivity(intent);

相关内容

  • 没有找到相关文章

最新更新