Complete the SSO authentication flow with the authorization code from the SSO provider. Returns authentication token and user information.
curl --request POST \
--url https://api.fluxer.app/v1/auth/sso/complete \
--header 'Content-Type: application/json' \
--data '
{
"code": "<string>",
"state": "<string>"
}
'{
"token": "<string>",
"user_id": "<string>",
"redirect_to": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.fluxer.app/llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.fluxer.app/v1/auth/sso/complete \
--header 'Content-Type: application/json' \
--data '
{
"code": "<string>",
"state": "<string>"
}
'{
"token": "<string>",
"user_id": "<string>",
"redirect_to": "<string>"
}