嗨我的网址有https://myapp.example.io/#/home?ref=“myid”& name =“myname”& img =“myimageurl”& utm_source = invitation& utm_medium = email& utm_campaign = Invitations。 在我的应用程序中,我编码为
<intent-filter>
<data android:scheme="https"
android:host="myapp.example.io"
android:pathPrefix="/home?ref=" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
我将pathPrefix更改为路径和路径模式。有人可以建议我如何从这个网址获得正确的路径。那么我可以用它将它重定向到我的应用程序。提前致谢。