twogate / cordova-plugin-sign-in-with-apple

A native-implemented plugin of Sign in with Apple // Thanks to your contribution! // Cordova>=8 iOS>=13
https://www.npmjs.com/package/cordova-plugin-sign-in-with-apple
MIT License
74 stars 48 forks source link

Result fullName empty #39

Closed lucasgalli closed 2 years ago

lucasgalli commented 2 years ago

I am using the simple example...

window.cordova.plugins.SignInWithApple.signin( { requestedScopes: [0, 1] }, function(succ){ console.log(succ) alert(JSON.stringify(succ)) }, function(err){ console.error(err) console.log(JSON.stringify(err)) } )

The code above give me just the "authorizationCode" , "identityToken" and "user", but I need the "fullName" and this is empty.

The results of my console log "Screen Shot 2021-11-11 at 10 02 08"

info device Iphone 11 pro - iOS 15.1

version Cordova 10.0.0 version plugin 0.1.2

Why is the "fullName" empty? Could anybody help me?

lucasgalli commented 2 years ago

Guys, sorry for the mess, I just find out that we get the "fullName" in first time when we use the app, so I just clean the app's information in my apple account.