How to redirect our user after password restin android/ios

I want to redirect our user after password rest , in android/ios
we send a password rest link by email
I tried to use Application Login URI

AndroidManifest.xml

<intent-filter android:autoVerify="true">
<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="golderer.000webhostapp.com" />
    </intent-filter>

my app link: https://golderer.000webhostapp.com and it is verified on app links assistant. success your app is associated with the selected domains

it is working when links in email / note app , however, it does not redirect the user from the browser instead it opens the link in chrome

Hi there @huthefa.alfararjeh!

Were you ever able to get this working as expected?

Are you able to go into a bit more detail on this :point_up: ? When you say that it opens the link in Chrome, are you referring to Chrome Custom Tabs? If you are using an Auth0 SDK this is most likely the expected behavior.

Additionally, have you registered your app link at your application in Auth0? You can read more about that here.

Let us know!

2 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.