Is anyone able to retrieve `name` of the user via ...
# talk-kratos
f
Is anyone able to retrieve
name
of the user via apple oidc? I’m requesting name, email scope, but i’m not able to receive name (email works fine)
l
you might be running into this interesting decision that Apple made with their OIDC system:
Ensure that your app relays the credentials and user information to your app servers. The API collects this information and shares it with your app the first time the user logs in using Sign in with Apple. If the user then uses Sign in with Apple on another device, the API doesn’t ask for the user’s name or email again. It collects the information again only if the user stops using Sign in with Apple and later reconnects to your app.
https://developer.apple.com/documentation/sign_in_with_apple/sign_in_with_apple_rest_api/authenticating_users_with_sign_in_with_apple
f
Thanks.