Request
Body Params application/json
{
"credential": {
"authorizationCode": "string",
"identityToken": "string",
"rawNonce": "string",
"scopes": [
[
"string"
]
]
}
}
Request Code Samples
curl --location --request POST 'http://localhost:8080/auth/connect/apple' \
--header 'Content-Type: application/json' \
--data-raw '{
"credential": {
"authorizationCode": "string",
"identityToken": "string",
"rawNonce": "string",
"scopes": [
[
"string"
]
]
}
}'
Responses
{
"code": 0,
"result": true,
"error": "string"
}
Modified at 2026-04-02 20:34:51