Coder Social home page Coder Social logo

spring-boot-auth0-poc's Introduction

Spring Boot with Auth0 integration

Quickstart:

Configure Auth0

  • Sign up an Auth0 account
  • Go to Applications, create "Regular Web Application"
  • Configure "Allowed Callback URLs" to http://localhost:8080/callback
  • Configure "Allowed Logout URLs" to http://localhost:8080/logoutCallback
  • Copy domain, clientId, and clientSecret to config/application.yml

Configure Twilio

  • Sign up Twilio
  • Get a trial Twilio phone number in Dashboard
  • Go back to Auth0's "Multi-factor Authentication", enable "Phone Message", "Twilio", "SMS"
  • Copy Account SID, Auth Token, and My Twilio phone number from Twilio to Auth0

Run Application

  • Run the project's Application
  • Login using http://localhost:8080/login
  • Logout using http://localhost:8080/logout

The response of /login process looks like this

{
    "accessToken": "<accessToken>",
    "idToken": "<idToken>",
    "refreshToken": null,
    "type": "Bearer",
    "expiresIn": 86400
}

The id_token can be JWT-decoded into

{
    "email": "[email protected]",
    "email_verified": false,
    "iss": "https://xyz.auth0.com/",
    "sub": "auth0|62da51d635c99dc8b8c64f17",
    "aud": "Ddd0KdKJlDKXcXpSGnAtgp1G8CrwbFQA",
    "iat": 1658732605,
    "exp": 1658768605,
    "acr": "http://schemas.openid.net/pape/policies/2007/06/multi-factor",
    "amr":
    [
        "mfa"
    ]
}

sub is the Auth0's userId that can be used for following API calls.

spring-boot-auth0-poc's People

Contributors

emeraldhieu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.