我們正在嘗試使用branch.io爲Android創建一些深層鏈接,但在過去2天內沒有任何成功。如果我們能夠得到一些幫助,我們會很高興。如何使用branch.io創建Android的深層鏈接
配置:
Android清單:
<activity
android:name=".login.view.DeepLinkActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.Login"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<data android:scheme="myapp" android:host="open" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
Branch.io控制板:
在機器人重定向部分,用於 「機器人URI模式」 的值被設置爲「MyApp的:// 「
鏈接正在通過branch.io HTTP API生成。 POST請求是
host: v1/url
request body:
{
"alias":"xxxx",
"data":"{\"$fallback_url\":\"www.xxx.com\",\"$android_depplink_path\":\"myapp://open/\"}",
"branch_key":"key_test_xxxxxxxxxx"
}
每當我們試圖打開通過電子郵件這個環節,我們被重定向到branch.io儀表板定義的後備網址。
請幫助我們正確配置此配置。
你試圖實現什麼? –
我們正在嘗試使用我們已經用於桌面和移動網站的branch.io API爲我們的android應用程序生成深層鏈接。鏈接將通過短信發送給用戶,如果應用程序安裝在手機上,則應用程序應該彈出;否則,應該在默認移動瀏覽器 –
中打開鏈接,您可以在沒有branch.io –