Oauth:Google.Jwt.Callback

GET /auth/google/callback

The response varies based on the authentication backend used.

Query parameters

  • code string | null
  • code_verifier string | null
  • state string | null
  • error string | null

Responses

  • 200 application/json

    Successful Response

  • 400 application/json

    Bad Request

    Hide response attribute Show response attribute object
  • 422 application/json

    Validation Error

    Hide response attribute Show response attribute object
    • detail array[object]
      Hide detail attributes Show detail attributes object
      • loc array[string | integer] Required
      • msg string Required
      • type string Required
GET /auth/google/callback
curl \
 -X GET http://localhost:5000/auth/google/callback
Response examples (400)
{
  "summary": "Invalid state token."
}
{
  "detail": "LOGIN_BAD_CREDENTIALS"
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}