Chrome自定义标签Oauth2 Flow

Wol*_*ine 5 java android google-chrome chrome-custom-tabs

我正在使用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>
Run Code Online (Sandbox Code Playgroud)

当Chrome自定义标签转向重定向URI时,如何重定向回应用?

Wol*_*ine 0

目前 Strava 仅支持 http[s] 方案。
我认为只有Fitbit支持自定义方案,以便从 chrome 自定义选项卡获取对应用程序的回调。