None
and set the
Application Type to either SPA
or Native
.https://dev-gja8kxz4ndtex3rq.us.auth0.com/mobile
.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.https://dev-gja8kxz4ndtex3rq.us.auth0.com/mobile
.None
and set the
Application Type to either SPA
or Native
.Auth0.OidcClient.UWP
package, running the command:Auth0Client
class, configuring the Auth0 Domain and Client ID:LoginAsync
method to log the user in:IsError
property of the result to see whether the login has failed. The
ErrorMessage
contains more information regarding the error which occurred.IdentityToken
and AccessToken
properties respectively.User
property, which is a
ClaimsPrincipal.To obtain information about the user, you can query the claims. You can for example obtain the user’s name and
email address from the name
and email
claims:Claims
collection:LogoutAsync
method.