我正在使用 chrome 自定义标签登录strava
。我能够授权该应用程序,但 chrome 自定义选项卡在到达重定向时不会重定向回我的应用程序。
<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:host="sample.example.com"
android:pathPrefix="/"
android:scheme="http" />
</intent-filter>
当 chrome 自定义选项卡重定向 URI 时,如何重定向回应用程序?