I am using custom chrome tabs to login with strava. I can authorize the application, but the chrome user tabs are not redirected back to my application when the redirect is reached.
<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>
How can I redirect back to the application when custom chrome bookmarks are sent to redirect the URI?
source
share