Closed lucasgalli closed 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 ""
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?
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.
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 ""
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?