You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in our case we ask user to sign in with apple. and then during checkout we ask user to provide email, phone to place order. apple rejects our app saying "sign in with apple" should be a self contained system and no addional info should be captured after that.
so, it means this plugin should return this data? please advise my code is like below
async login(){
cfaSignIn('apple.com').pipe(
mapUserToUserInfo(),
).subscribe(
async(user: any) => {
console.log("logged in user with data", user)
await this.handleUser(user)
}
)
}
The text was updated successfully, but these errors were encountered:
Hi Team,
in our case we ask user to sign in with apple. and then during checkout we ask user to provide email, phone to place order. apple rejects our app saying "sign in with apple" should be a self contained system and no addional info should be captured after that.
so, it means this plugin should return this data? please advise my code is like below
async login(){
cfaSignIn('apple.com').pipe(
mapUserToUserInfo(),
).subscribe(
async(user: any) => {
console.log("logged in user with data", user)
await this.handleUser(user)
}
)
}
The text was updated successfully, but these errors were encountered: