Skip to content

Latest commit

 

History

History

01-Login

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Express OpenID Connect Webapp Sample

This sample demonstrates authentication for an Express Node.js app. The sample quickly shows how to log in, log out, and view profile information of the logged-in user.

See a detailed walk-through of this sample app on the Express Quickstart.

Running This Sample Locally

  1. Install the dependencies with npm:
npm install
  1. Rename .env.example to .env and replace or check the following values.

⚠️ Note: If you downloaded this sample app directly from Auth0 Manage Dashboard, or from Auth0 Docs and you chose the Auth0 application you're creating this sample for, then you can check these are configured already:

  • CLIENT_ID - your Auth0 application client id
  • ISSUER_BASE_URL - absolute URL to your Auth0 application domain (ie: https://accountName.auth0.com)
  • SECRET - a randomly rengerated string. You can generate one on the command line with the following openssl rand -hex 32
mv .env.example .env
  1. Run the sample app:
npm start

The sample app will be served at localhost:3000.

Support + Feedback

Please use the Issues queue in this repo for questions and feedback.

Vulnerability Reporting

Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

What is Auth0?

Auth0 helps you to easily:

  • implement authentication with multiple identity providers, including social (e.g., Google, Facebook, Microsoft, LinkedIn, GitHub, Twitter, etc), or enterprise (e.g., Windows Azure AD, Google Apps, Active Directory, ADFS, SAML, etc.)
  • log in users with username/password databases, passwordless, or multi-factor authentication
  • link multiple user accounts together
  • generate signed JSON Web Tokens to authorize your API calls and flow the user identity securely
  • access demographics and analytics detailing how, when, and where users are logging in
  • enrich user profiles from other data sources using customizable JavaScript rules

Why Auth0?

License

This project is licensed under the MIT license. See the LICENSE file for more info.