假设有一个网站https://www.example.com并且我们正在 使用以下意图过滤器在 Android 应用程序 中收听https://www.example.com/product
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="www.example.com"
android:pathPrefix="/product"
android:scheme="https" />
</intent-filter>
并且文件assetlinks.json 也托管在example.com 上
Android 应用程序链接按预期工作正常。
现在,如果用户进入浏览器并打开 example.com 并且用户点击https://example.com/product将在应用程序中打开,但我们希望仅当用户在我们的网站上时才阻止应用程序打开
任何帮助将不胜感激。