I’m trying to setup my app to suppport login with apple
I setup option in Apple connection to include aditional scope ‘name‘
Also, check boxes Name, EmailAddress = true
Also I have 2 actions (post-login, post-user-registered) and sending the whole event to my local app
In the event I see that request.query.requested_scope does not contain that scope ‘name‘ I added in apple connection settings
“request”: {
“ip”: “3”,
“asn”: “420”,
“method”: “GET”,
“query”: {
“audience”: “”,
“client_id”: “wtaPnQ4kTkfqKKcNP”,
“nonce”: “a123”,
“protocol”: “oauth2”,
“redirect_uri”: “”,
“response_type”: “id_token token”,
“scope”: “openid profile email”,
“screen_hint”: “signup”
},
“body”: {
},
"geoip": {
},
"hostname": "dev-bus.auth0.com",
"language": "ru-RU,ru;q=0.9",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36"
},
“stats”: {
“logins_count”: 1
},
“user”: {
“nonce_supported”: true,
“app_metadata”: {
},
"created_at": "2025-10-13T11:49:00.846Z",
"email_verified": true,
"email": "arno@gmail.com",
"identities": [
{
"connection": "apple",
"isSocial": true,
"provider": "apple",
"userId": "001324.ec2786489b7396eb.1453",
"user_id": "001324.ec278689b7396eb.1453"
}
],
"name": ".com",
"nickname": "",
"picture": "https://s.gravatar.cog&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Far.png",
"updated_at": "2025-10-13T11:49:00.846Z",
"user_id": "apple|001324.ec25f3b7396eb.1453",
"user_metadata": {
},
"multifactor": [
]
},
(I removed some data there not to share it in public)
I need to get user first and last name, how do I do that?