如何为我们的应用程序创建深度链接url,它也接受参数?
我试过使用
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="my-scheme"
android:host="my.host.name"
android:pathPrefix="/data?name=[text]&token=[text]"></data>
</intent-filter>但不是working.Can任何人请帮助我如果我必须启动我的应用程序
my-scheme://my.host.name/data?name=MY_NAME&token=MY_TOKEN;发布于 2018-04-18 14:24:45
将android:scheme="my-scheme"替换为android:scheme="https",然后尝试访问https://my.host.name/data?name=MY_NAME&token=MY_TOKEN网站。另外,用您的网站名称替换主机。
https://stackoverflow.com/questions/49892505
复制相似问题