Auth controller auth callback

GET /api/v1/oauth/{provider}/callback

Path parameters

  • provider string Required

    Provider for auth

    Values are google, facebook, or github.

Query parameters

  • code string Required

    code for auth

  • state string Required

    state to verify auth user

Responses

  • 422 application/json

    Unprocessable Entity or Validation Error : Missing provider Or code Or state

    Hide response attributes Show response attributes object
GET /api/v1/oauth/{provider}/callback
curl \
 -X GET https://api.crawlora.com/api/v1/oauth/{provider}/callback?code=string&state=string
Response examples (422)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}