链接回亚马逊应用商店以获取评级

我目前正在Google Play商店的Android应用程序中使用以下代码来请求对我的应用程序进行评论和评级。

Intent goToMarket = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.yapp.blah"));
goToMarket.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(goToMarket);

我如何链接回亚马逊应用商店或亚马逊市场来实现同样的事情?


答案 1

只需使用以下代码。它首先尝试通过URI打开市场应用程序,但如果找不到,则打开Web链接。

public static final String MARKET_AMAZON_URL = "amzn://apps/android?p=";
public static final String WEB_AMAZON_URL = "http://www.amazon.com/gp/mas/dl/android?p=";

    private static void openOnAmazonMarket(Context context, String packageName) {

    try {
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(MARKET_AMAZON_URL + packageName));
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(intent);
    } catch (android.content.ActivityNotFoundException anfe) {
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(WEB_AMAZON_URL + packageName));
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(intent);
    }

}

对于Google Play和Samsung Galaxy Apps的链接如下:

public static final String MARKET_GOOGLE_URL = "market://details?id=";
public static final String WEB_GOOGLE_URL = "http://play.google.com/store/apps/details?id=";

public static final String MARKET_SAMSUNG_URL = "samsungapps://ProductDetail/";
public static final String WEB_SAMSUNG_URL = "http://www.samsungapps.com/appquery/appDetail.as?appId=";

答案 2

您可以执行以下操作:

  1. 检查设备是否基于其制造商。例如:https://developer.amazon.com/sdk/fire/specifications.html

  2. 要撰写评论和打开亚马逊应用商店,请使用以下意图

    amzn://apps/android?p=package_name
    

    特定包名称的详细信息页面的位置。p=Link

参考:亚马逊开发者链接。

https://developer.amazon.com/sdk/in-app-purchasing/sample-code/deeplink.html


推荐