Get the Callback URL for Third-Party Login
GET/auth/v1/provider/uri
Get the Callback URL for Third-Party Login
Request
Query Parameters
provider_id stringrequired
Identity source ID
Example: github
redirect_uri string
Redirect URI
state string
The current state of the client, which can be any value
scope string
Authorization scope
response_type string
Authorization type
client_id string
The client ID corresponding to the application, which defaults to the environment ID and can be omitted
Header Parameters
x-device-id stringrequired
Device ID
Responses
- 200
- 500
A successful response.
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
Callback URL (string) Callback URL (string)
{
"uri": "string"
}
An unexpected error response.
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
error Error Message (string)
error_code int32
error_description Error Description (string)
{
"error": "string",
"error_code": 0,
"error_description": "string"
}
Loading...