0

我有 2 个域和一个应用程序,但会通过 Deep-Links 从两个域链接到应用程序页面。

是否可以通过动态链接从例如 static.domain.com 和 content.domain.com 链接到同一个应用程序?提前致谢 :)

4

1 回答 1

1

当然,您可以根据需要添加多个域。只需在清单中添加您的域。

<data android:host="static.domain.com" android:scheme="http"/>
<data android:host="static.domain.com" android:scheme="https"/>
<data android:host="content.domain.com" android:scheme="http"/>
<data android:host="content.domain.com" android:scheme="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="static.domain.com" android:scheme="http"/>
    <data android:host="static.domain.com" android:scheme="https"/>
    <data android:host="content.domain.com" android:scheme="http"/>
    <data android:host="content.domain.com" android:scheme="https"/>
</intent-filter>

不要忘记通过在 .well-known 文件夹中添加assetlinks.json 来验证您的域。确保可以使用https://static.domain.com/.wll-known/assetlinks.json和访问它https://content.domain.com.com/.wll-known/assetlinks.json。应该使用 https 来验证您的域。

干杯

于 2018-01-22T10:48:06.283 回答