我正在尝试获取一个 Web URL 来为我的应用程序打开/启动一个活动,但它不起作用。URL 类似于以下内容:
https://zzz.yyy.com/activate?user="123123123"&token="absdi24 "
我只需要在“激活”点之前识别链接。我的意图如下:
<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:scheme="https" android:host="zzz.yyy.com"
android:path="/activate*"/>
</intent-filter>
我已经在“路径”末尾尝试了使用和不使用通配符 (*) 的代码,但到目前为止没有任何效果。什么不见了?