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>"
}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>"
}