用于管理订阅的Amazon Appstore Deeplink

时间:2018-03-27 21:33:37

标签: android mobile in-app-purchase amazon subscription

我正在尝试从我的应用程序深层链接到Amazon Appstore的“管理订阅”页面,我很好奇是否可能。我已经成功完成了Google Play商店和iOS App Store的这项工作。

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

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

这将在设备浏览器上打开右侧页面,但我更喜欢是否可以打开Amazon Appstore应用程序中的Manage Subscriptions页面。

2 个答案:

答案 0 :(得分:2)

似乎仍然无法实现,请参见https://forums.developer.amazon.com/questions/16617/link-to-manage-subscription.html

  

作为开发人员,您没有链接可以用来允许客户管理他们的订阅。您需要让客户通过其设备上的Amazon Apps之一,或通过用户个人资料下的Amazon.com网站来管理其订阅。

答案 1 :(得分:0)

这是您想要的方案:“ amzn:// apps / library / subscriptions”,下面的代码应该起作用:

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