Comments

4 comments

  • Blastoise186
    Discord already supports OAuth2.0 which is preferable over OpenID
    -13
  • Tiedye

    They are not mutually exclusive, OpenID Connect is a wrapper around a particular OAuth2 flow that works well for user authentication and standardizes discovery of the authentication endpoints.

    Implementing OpenID Connect would not be a significant lift as it's just a bit on top of OAuth2, and would allow easy integration with authentication services like Firebase Authentication.

    9
  • Upcomer

    The same is for AWS Cognito. It supports only OpenID Connect.

    4
  • Intensso

    This please, it's 2021 and every gaming app is implementing 'Login with Discord' without actually using the oauth2 api. With the current implementation we have to make a request (which is an expensive additional network round trip) every time we want our users to access authenticated resources on our webapps/apps, implementing OpenID would allow us to use Discord public keys to verify id_token without the need of extra network round trips to discord, saving lots of bandwidth and time for all involved actors: discord servers, developer servers and our users time.

    5

Please sign in to leave a comment.