0. get Message (Apple)
To resolve the issue, it would be appropriate to revise your app so the user is not required to provide additional information or take unnecessary steps after using Sign in with Apple.
2. In payload obtained from REST API method, name or user information other than email cannot be checked.
stdClass Object
(
[iss] => https://appleid.apple.com
[aud] =>
[exp] =>
[iat] =>
[sub] =>
[chash] =>
[email] => --------@privaterelay.appleid.com
[emailverified] => true
[isprivateemail] => true
[authtime] => 1609916359
[noncesupported] => 1
)
3. My Web Source Code Reference
https://github.com/GriffinLedingham/php-apple-signin
The review was denied for the user to enter a name during the Apple sign-in process.
5. 1.1 Legal: Privacy - Data Collection and Storage
To resolve the issue, it would be appropriate to revise your app so the user is not required to provide additional information or take unnecessary steps after using Sign in with Apple.
Apple Login JS official documentation has how to get full name, but Apple Login REST API's official documentation doesn't have information on how to get full name.
2. In payload obtained from REST API method, name or user information other than email cannot be checked.
stdClass Object
(
[iss] => https://appleid.apple.com
[aud] =>
[exp] =>
[iat] =>
[sub] =>
[chash] =>
[email] => --------@privaterelay.appleid.com
[emailverified] => true
[isprivateemail] => true
[authtime] => 1609916359
[noncesupported] => 1
)
3. My Web Source Code Reference
https://github.com/GriffinLedingham/php-apple-signin