1

我使用 firebase 控制台创建了动态链接。我的设备上安装了一个本地应用程序(应用程序尚未在 google play store 上)。

这是清单文件中用于处理动态链接的代码。

 <activity android:name=".MainActivity" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>

    <!-- [START link_intent_filter] -->
    <intent-filter>
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.DEFAULT"/>
        <category android:name="android.intent.category.BROWSABLE"/>
        <data
            android:host="<code>.app.goo.gl/"
            android:scheme="https"
            android:pathPattern=".*" />

    </intent-filter>
    <!-- [END link_intent_filter] -->
</activity>

这是活动中的意图处理程序

// [START build_api_client]
    // Build GoogleApiClient with AppInvite API for receiving deep links
    GoogleApiClient mGoogleApiClient = new GoogleApiClient.Builder(this)
            .enableAutoManage(this, this)
            .addApi(AppInvite.API)
            .build();
    // [END build_api_client]

    // [START get_deep_link]
    // Check if this app was launched from a deep link. Setting autoLaunchDeepLink to true
    // would automatically launch the deep link if one is found.
    boolean autoLaunchDeepLink = false;
    AppInvite.AppInviteApi.getInvitation(mGoogleApiClient, this, autoLaunchDeepLink)
            .setResultCallback(
                    new ResultCallback<AppInviteInvitationResult>() {
                        @Override
                        public void onResult(@NonNull AppInviteInvitationResult result) {
                            if (result.getStatus().isSuccess()) {
                                // Extract deep link from Intent
                                Intent intent = result.getInvitationIntent();
                                String deepLink = AppInviteReferral.getDeepLink(intent);

                                // Handle the deep link. For example, open the linked
                                // content, or apply promotional credit to the user's
                                // account.

                                // [START_EXCLUDE]
                                // Display deep link in the UI
                                //((TextView) findViewById(R.id.link_view_receive)).setText(deepLink);
                                Toast.makeText(getApplicationContext(), deepLink, Toast.LENGTH_LONG).show();
                                // [END_EXCLUDE]
                            } else {
                                Log.d(TAG, "getInvitation: no deep link found.");
                            }
                        }
                    });
    // [END get_deep_link]

当我在移动浏览器中打开动态链接时,它不会将我重定向到应用程序。而是在移动浏览器本身中打开链接。

当用户尝试在移动浏览器中点击动态链接时如何打开应用程序?

4

1 回答 1

1

您的网址和清单都存在一些问题。“链接”参数还需要包含方案,因此只需进行最少的更改,它应该是:

https://<code>.app.goo.gl/?link=https://google.com&apn=<package name>

(注意添加的 https://),当使用该链接时,您的清单应如下所示:

<intent-filter>
    <action android:name="android.intent.action.VIEW"/>
    <category android:name="android.intent.category.DEFAULT"/>
    <category android:name="android.intent.category.BROWSABLE"/>
    <data
        android:host="google.com"
        android:scheme="https"
        android:pathPattern=".*" />
</intent-filter>

在 firebase 网页上创建短 url 之前,您可以使用完整 url 测试您的应用程序。这有助于您确保在创建短网址以供实际使用之前获得正确的应用程序。

使用 http/https 方案时,android 应该首先询问您是要打开浏览器还是您的应用程序。我更喜欢将“al”与应用程序特定方案一起使用,而不是在我的应用程序上打开视图。

于 2016-06-06T11:32:52.147 回答