None
and set the Application Type to either
SPA
or Native
.http://localhost:3000
.returnTo
query parameter. The logout URL for your app
must be added to the Allowed Logout URLs field in your Application Settings. If this field is not set, users will be
unable to log out from the application and will get an error.http://localhost:3000
.http://localhost:3000
.index.html
page:Auth0Web
class. Redirect your
users to the Auth0 Universal Login page using loginWithRedirect()
.redirectUrl
parameter to
loginWithRedirect
. Omitting this will cause Auth0 to use the default login route, which is not configured by default.onLoad
during startup and handling the credentials that are given to
you:loginWithRedirect()
and logs the user into your app.
Verify that you are redirected to Auth0 for authentication and then back to your application.Verify that you can access credentials
as a result of calling onLoad
and that
you’re able to access the ID and access tokens.logout()
. Read
more about logging out of Auth0.returnToUrl
when calling logout
, otherwise
Auth0 will default to the first URL in the Allowed Logout URLs list.logout()
and logs the user out of your application. When
you select it, verify that your Flutter app redirects you to the logout endpoint and back again. You
should not be logged in to your application.onLoad
during application startup. The returned object from onLoad
contains a user
property with all the user profile properties. This is internally populated by
decoding the ID token.user
property on the result. Verify the current user’s profile
information, such as email
or name
.