Continue OAuth login
Continues the OAuth2 login flow after the login page
GET
/{apiBasePath}/oauth/loginPath parameters
apiBasePathstringrequiredIts value depends on the apiBasePath set by the user
Query parameters
loginChallengestringrequiredResponses
200The next url in the login flow
One of:
object
frontendRedirectTostringThe URL to redirect the user to
generalErrorResponse
statusstringError status code
Allowed:
GENERAL_ERRORmessagestringError message
400OAuth2 specific error response
errorstringThe OAuth2 error code
error_descriptionstringHuman readable error description
404Resource not found error
string500Internal server error
stringTry it
Server
Parameters
Request
curl -X GET "/auth/oauth/login?loginChallenge=string"const response = await fetch("/auth/oauth/login?loginChallenge=string", {
method: "GET"
});import requests
response = requests.get(
"/auth/oauth/login?loginChallenge=string",
)Response
{
"frontendRedirectTo": "https://client.com/callback?code=asdf1234567890&status=asdf1234"
}{
"error": "invalid_request",
"error_description": "Unsupported grant type: password"
}"Not Found""Internal Error"