Skip to content

Sample NodeJS application using AWS Cognito for authentication via OAuth2

License

Notifications You must be signed in to change notification settings

EngErik/node-aws-cognito-oauth2-example

 
 

Repository files navigation

Node AWS Cognito example

Example application using AWS Cognito for authentication.

Requires:

  • NodeJS
  • AWS Cognito user pool configured for API client (see below)

Setup AWS Cognito

You will need access to an AWS account to setup a Cognito User pool.

  1. Setup Cognito user pool to be used for your users (see here)
  2. In user pool "General settings" - "App Clients", create a client for your application (needed for config)
  3. In user pool "App integration" - "App client settings",
    • check Enabled Identity providers - Cognito User Pool
    • set callback url - http://localhost:3000/callback
    • set sign out url - http://localhost:3000/signout
    • check "Allowed OAuth Flows" - "Authorization code grant"
    • check "Allowed OAuth Scopes" - email, openid, profile
  4. In user pool "App integration" - "Domain name", create a domain (needed for using cognito UI via OAuth 2.0 Authorization code grant flow)

Run

Set envs:

export COGNITO_APP_CLIENT_ID='YOUR_COGNITO_APP_CLIENT_ID'
export COGNITO_APP_CLIENT_SECRET='YOUR_COGNITO_APP_CLIENT_SECRET'
export COGNITO_DOMAIN='YOUR_COGNITO_DOMAIN'
export COGNITO_JWK='YOUR_COGNITO_JWK' # copy your kid referenced JWK from https://cognito-idp.{region}.amazonaws.com/{userPoolId}/.well-known/jwks.json

Run:

npm install
npm start

Notes

Useful links:

About

Sample NodeJS application using AWS Cognito for authentication via OAuth2

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 77.1%
  • HTML 21.2%
  • CSS 1.7%