June 21, 2023
|
15
min read

Add Auth0 Authentication and authorization to ngrok traffic

Frederico Hakamine

Adding auth to applications seems easy at the surface, but it can quickly become a source of frustration once you need to deliver a production-grade solution with features for end-users — i.e. self-service sign-ups, account recovery, and social auth for multiple platforms — and for security — i.e. audit trail, live session management, and authorization policies. 

Solutions like Auth0 provide this functionality out of the box, but its implementation is based on complex protocols — OAuth, OpenID Connect, and SAML — that can take some time to implement right. ngrok offers native integrations with auth solutions like Auth0 and additional features so you can deliver complete auth to your apps that makes both end-users and security happy in record time.

In this post, I'll integrate ngrok to Auth0 and solve for these challenges.

Serving an application with ngrok

If you want to follow along:

To start, let's start with a sample application. From the terminal, enter the following commands to clone and launch the app:

To confirm the app is up and running, launch your browser and go to http://localhost:3001

Now we just need to serve this application via the ngrok ingress. To do so:

1. Sign up to a free ngrok account. You will be redirect to a get started page.

2. From the get starte page, follow steps 1 and 2 to install the ngrok agent and set your access token

3. Now, just fire up the ngrok agent pointing to your sample application:

ngrok http 3001

4. ngrok will serve your application via the URL listed by the ngrok agent:

At the present moment, the access to my app is public.

But if you take a look at the sample app code (ngrok-tutorial/lesson1/app.js, lines 9-13), you will notice that my app is ready to receive a user name (in the <code>name</code> variable) and provide a warm greet whenever my app is served by ngrok with authentication at the edge:

  let name = req.header("ngrok-auth-user-name")
  console.log(`Incoming request from ${name}`)
  if (typeof name !== 'undefined') {
    body += 'Hi there ' + name
  }

Let's add Auth0 authentication and make my app safe and more corteous!

Adding Auth0 authentication

1. Sign up for a free Auth0 account.

2. From the Auth0 Administrative Dashboard, click Applications > Applications, and then click Create Application.

3. On the Create application popup, enter ngrok app as the application name, select the Single Page Web Application tile, and then click Create.

4. On the ngrok app page, click the Settings tab and copy the Domain, Client ID, and Client Secret values.

5. Enter https://idp.ngrok.com/oauth2/callback in the Allowed Callback URLs field, and enter the URL provided by the ngrok agent to expose your application to the internet in the Application Login URI field (i.e. https://myexample.ngrok.io).

Auth0 configuration

6. Click Save Changes.

Integrating Auth0 and ngrok

1. Return to the terminal where you ran ngrok and enter Ctrl + C stop the ngrok agent.

2. Launch the ngrok application again, replacing <code>AUTH0_OAUTH_URL</code> with the domain copied from Auth0 (i.e. https://dev-abcd1234.us.auth0.com/), AUTH0_CLIENT_ID with the client id from Auth0, and AUTH0_CLIENT_SECRET with the client secret copied from Auth0:


ngrok http 3001 --oidc=AUTH0_OAUTH_URL \
  --oidc-client-id=AUTH0_CLIENT_ID \
  --oidc-client-secret=AUTH0_CLIENT_SECRET

3. Copy the URL available next to forwarding and launch your app. You will be redirected for authentication with Auth0.

4. Sign up with a new account and complete the authentication.

5. You will see the sample app page with your registered name.

Adding different social auth platforms, auditing, observability, live session management, and much more

Now that your application is integrated, you can leverage both Auth0 and ngrok to all the additional features for the best user and security experience:

  • Customizing the Auth experience: The Auth0 documentation covers a rich set of features — like passwordless auth, self-service account recovery, and more — to enrich the login experience.
  • Adding URL-based authorization: The ngrok edge configuration (available from the ngrok dashboard), allows you to set specific authentication behaviors per url route. It also provides additional middleware modules for load balancing traffic, adding ip restrictions, and much more.
  • Monitoring live sessions: The ngrok dashboard also shows a live view of all logged sessions in your application via the app users. This view makes your connection identity aware and provide you the ability to audit and kill sessions in real time.
  • Auditing traffic: ngrok also sends traffic in real-time to observability systems like AWS and Datadog Logs. You can use that to both monitor your application availability and to audit login and other important traffic events for security and compliance.

Share this post
Frederico Hakamine
Brazilian, Palmeirense, ngroker, fan of good software, legos, and brewing.
Authentication
OAuth
Security
Production