Skip to content

Creating Application in Auth0 portal

Oleg Burov edited this page May 11, 2018 · 7 revisions

An Auth0 application will represent the Web App (blue box) and allow use of Auth0 for authentication.

Auth0 and Web App

Step 1: Create Auth0 Application

To create Auth0 application, log in to Auth0 Dashboard at the URL https://manage.auth0.com/. Then go to the section Applications at the right menu. Click the button + Create Application.

Create Auth0 App

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

Allowed Callback and Logout URLs

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

Domain, Client ID and Client Secret

What's next?

Setting up ASP.NET Core Web App

Clone this wiki locally