Description
Before opening, please confirm:
- I have searched for duplicate or closed issues and discussions.
- I have read the guide for submitting bug reports.
- I have done my best to include a minimal, self-contained set of instructions for consistently reproducing the issue.
JavaScript Framework
React
Amplify APIs
Authentication
Amplify Categories
auth
Environment information
# Put output below this line
Describe the bug
Hi,
Before you ask, I've seen previous closed issues on this subject but the accepted answers did not help. I want to import first name and last name attribute for a user that Sign In with Apple for the first time to pre-fill information inputs. Despite my best efforts, I can't manage to make this happen. I've made sure to delete my test user from pool and "stop using apple sign for service" for my app via Apple ID dashboard for every tests, I've tried mapping to standard attributes and custom attributes as well to see any difference, I've tried to go via hosted UI to get around any implementation problem. All of this gets the same result I can sign in without any problem but cannot get the attributes I am looking for. Can anybody think of something for my problem, I've even tried to log pre sign up event via lambda to see if something is up but don't see any issue, just not the attributes I am looking for.
Perhaps it's from my pool config, I'll attach some screenshot so maybe someone sees something I don't.
Thank you all for your help !
PreSignUp event logs :
{
version: '1',
region: 'eu-central-1',
userPoolId: 'MY_POOL_ID',
userName: 'signinwithapple_001324.e1a3f6f0f6264f43b3ae0189a97ca8f2.1457',
callerContext: {
awsSdkVersion: 'aws-sdk-unknown-unknown',
clientId: 'MY_CLIENT_ID'
},
triggerSource: 'PreSignUp_ExternalProvider',
request: {
userAttributes: {
email_verified: 'false',
'cognito:email_alias': '',
'cognito:phone_number_alias': '',
email: 'USER_TEST_MAIL'
},
validationData: {}
},
response: {
autoConfirmUser: false,
autoVerifyEmail: false,
autoVerifyPhone: false
}
}
Expected behavior
I want my user to have Given Name and Family Name properly mapped to firstName and lastName for a first time apple sign in
Reproduction steps
Delete user from pool, stop using Apple ID for service via apple dashboard and sign in again on my app. Sign in is successful but attributes are not mapped
Code Snippet
<button onClick={() => Auth.federatedSignIn({provider: 'SignInWithApple'})} type="button">
sign up with apple
</button>
Log output
// Put your logs below this line
aws-exports.js
const config = {
Auth: {
userPoolId: MY_POOL_ID,
userPoolWebClientId: MY_WEB_CLIENT_ID,
mandatorySignIn: false,
authenticationFlowType: 'USER_SRP_AUTH',
oauth: {
domain: 'MY_DOMAIN.eu-central-1.amazoncognito.com',
scope: ['phone', 'email', 'profile', 'openid', 'aws.cognito.signin.user.admin'],
redirectSignIn: config.oauthRedirect,
redirectSignOut: config.oauthRedirect,
responseType: 'code'
}
}
}
Manual configuration
No response
Additional configuration
No response
Mobile Device
No response
Mobile Operating System
No response
Mobile Browser
No response
Mobile Browser Version
No response
Additional information and screenshots
No response