-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WebAuthProvider Is not working after trying to login after the first load #488
Comments
That's the browser app blocking the redirect and is out of the scope of what this SDK can do to help prevent that. Ideally, there would be content in that callback page that the user could click to get back to your app, as a fallback in case this happens. The easiest way to solve this is to use a custom scheme Redirect URL instead of an "https" one, following the steps here. To our knowledge, the hard way to solve this, if you want to keep using "Android App Links", is to host content in that Redirect URL that will have a link/button as fallback using a custom scheme, as above. Your app would need to re-declare the |
Hi folks, I just want to confirm that I also am experiencing this issue. I can't seem to find any way around it. I've even deleted my Auth0 API and made a new one but I see the same behavior. Also I am not using an Edit: Then continued on using this tutorial: They use different schemes. The first uses |
@MackHartley thanks for the feedback and apologies for the confusion. The reason the library article shows how to use "https" is that that's the default scheme value that the |
@alaa-test-2 I'm going to close this now. If you have further questions feel free to leave a reply here. |
Describe the problem
I'm trying to implement the universal login using WebAuthProvider, when I run it for the first time, I can see the login screen, but then when I tried to login, I'm redirected to page not found, if I run the app again, I will see page not found
What was the expected behavior?
I should be able to login and see the login screen after the first time
Reproduction
Running this code, will be able to see the login screen. Not able to login, and any attempts afterword will see not found screen, no errors in the logcat
Environment
implementation 'com.auth0.android:auth0:2.2.0'
The text was updated successfully, but these errors were encountered: