For verify state

GET /api/v1/oauth/verify

Query parameters

  • state string Required

    state to verify auth user

Responses

GET /api/v1/oauth/verify
curl \
 -X GET https://api.crawlora.com/api/v1/oauth/verify?state=string
Response examples (200)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {
    "token": "string"
  }
}
Response examples (404)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}
Response examples (422)
{
  "is_error": true,
  "message": "string",
  "correlator_id": "string",
  "data": {}
}