Creating Application in Auth0 portal - ob1dev/Auth0 GitHub Wiki
An Auth0 application will represent the Web App (blue box) and allow use of Auth0 for authentication.
Step 1: Create Auth0 Application
To create Auth0 application, log in to Auth0 Portal at the URL https://manage.auth0.com/. Then go to the section Applications at the right menu. Click the button + Create Application.
After a new application is created, switch to the tab Settings.
Step 2: Configure Auth0 Application
In the tab Settings, you can change such fields as Name, Description, Application Logo etc. But to move forward we need to configure the fields Allowed Callback URLs and Allowed Logout URLs.
In my case I set them as:
- Allowed Callback URLs:
https://onegit-webapp.azurewebsites.net/signin-auth0
- Allowed Logout URLs:
https://onegit-webapp.azurewebsites.net, https://onegit-webapp.azurewebsites.net/Home
When you get done with those fields, copy and save values of the following fields. You will need them for the next step.
- Domain:
olegburov.auth0.com
- Client ID:
vRmDy1JB5sN1j6OqyKP5obij6C4s6BcW
- Client Secret:
uhPo80PC1GB3ZJsIzbO61-DDmUjb3W6BNtOZpBeSUmsthosE_9zdrz2GY73OCdTg
Summary
You've now created a Auth0 Application, which will do authentication and authorization for you. In the following tutorial, you'll learn how to create ASP.NET Core Web Application and configure it to use Auth0.