如何为接受参数的应用程序创建深层链接网址?
我尝试过使用
<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>
但没有工作。如果我必须使用
启动我的应用程序,任何人都可以帮助我my-scheme://my.host.name/data?name=MY_NAME&token=MY_TOKEN;
答案 0 :(得分:0)
将android:scheme="my-scheme"
替换为android:scheme="https"
然后尝试访问该网站
https://my.host.name/data?name=MY_NAME&token=MY_TOKEN
。同时用您的网站名称替换主机。