http://{yourDomain}:4200/mobile
.http://{yourDomain}:4200/mobile
.Auth0.OidcClient.WPF
or Auth0.OidcClient.WinForms
package, depending on whether you are
building a WPF or Windows Forms application.Alternatively, you can use the NuGet Package Manager Console (Install-Package
) or the
dotnet
CLI (dotnet add
).Auth0Client
should now be properly instantiated. Run your application to verify that:Auth0Client
is instantiated correctly.LoginAsync()
method to create a login button that redirects users
to the Auth0 Universal Login page. After a user successfully authenticates, they will be redirected to the
callback URL you set up earlier in this quickstart.If there isn’t any error, you can access the User
, IdentityToken
,
AccessToken
and RefreshToken
on the LoginResult
returned from
LoginAsync()
.LogoutAsync()
method. When users log out, they will be redirected to your Auth0 logout endpoint,
which will then immediately redirect them back to the logout URL you set up earlier in this quickstart.LoginResult.User
property.