Get app integration authenticate URLs
Get app integration authenticate URLs for the given callback URL, return URL, device code, and type response.
Query parameters
callbackURLstringRequired
The callback URL. It is the URL that the user will be redirected to after logging in.
returnURLstringRequired
The return URL. It is the URL that the user will be redirected to after canceling the login.
deviceCodestringOptional
The device code. It is the code that the user will be detected as a device.
typeResponsestring · enumOptionalPossible values:
This enum represents the response client for the AppSettingAuthenticationTypeResponseClient.
Header parameters
Brand-URLstringRequiredExample:
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URL
Responses
200
The request was successful.
application/json
429
API call exceeded rate limit due to too many requests.
application/json
get
GET /api/v1/users/auth/app-integration/authenticate-urls HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Accept: */*
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": [
{
"appName": "Google",
"logoURL": "https://www.google.com/logo.png",
"authenticateURL": "https://accounts.google.com/o/oauth2/v2/auth"
}
],
"errors": []
}
Last updated
Was this helpful?