timeisgolden

Results 24 comments of timeisgolden

yeah, @mlynch Hello, Can you remind the explanation for clientId, redirectURI, scopes, state, and nonce params in detail? Thanks support.

having the same issue. Anyone solved this issue?

wow, that's great, @ciccilleju thanks for your reply. so did you use v1.0.1?

``` let options: SignInWithAppleOptions = { clientId: 'jeffrey.app', redirectURI: 'https://www.yourfrontend.com/login', scopes: 'email', state: '12345', nonce: 'nonce', }; SignInWithApple.authorize(options).then((result: SignInWithAppleResponse) => { console.log("Debug apple login:", JSON.stringify(result.response)); }); ``` I am trying...

yeah, of course, I added the capability in Xcode.

ERROR {"code":"auth/missing-or-invalid-nonce","message":"Nonce is missing in the request."} this is the error message when apple logged in

in SignIn Options, clientId is same as app bundle Id?

> Yes exactly, I have installed the library with npm, imported it in the typescript file, and then ran the authorize function. I got the response back with all my...

`{"authorizationCode":"cb5b9e6f054484070bbae53d461aa8d3b.0.sxzs.OJCuk02wLs7BKvJiHz-c5Q","identityToken":"eyJraWQiOiI4NkQ4OEtmIiwiYWxnIjoiUlMyNTYifQ.eyJpc3MiOiJodHRwczovL2FwcGxlaWQuYXBwbGUuY29tIiwiYXVkIjoiamVmZnJleS5hcHAiLCJleHAiOjE2MzQ4NDE0MTMsImlhdCI6MTYzNDc1NTAxMywic3ViIjoiMDAwNzkyLjQyNDI0NTAwYTIyMzRkNTBhNDg5ZWQwOTA0NzM5MDEyLjAyMjIiLCJub25jZSI6Im5vbmNlIiwiY19oYXNoIjoib1JSZlhTaXJHS2N6SmczV0FhcXhOQSIsImF1dGhfdGltZSI6MTYzNDc1NTAxMywibm9uY2Vfc3VwcG9ydGVkIjp0cnVlfQ.PBdIn45BMyx9PGjJm5VTpg9YGWvJ9WkcOpG-dGHF40z1j8NsRCj_3S_mCJsju8ak5rGqR5RZV-gHhm6NJT6xP1hvAOPG9eanNr9aH0H5XY4rZfZKGs67jQ-JllWMloPSda4Yu-6FjPuCdFSJa1w1YQdUGDO-x2h3yC1lkA6COGymYDPMZIdU4Qjq0c6wrAu4o2lFE8fqUk88apZlQVqPhLZLh549g_6wxweuTunBF0OsK7acreOQkwBIPyGrrDOmq96fVv8b0kDwcdOY4A_y6apEqcC1p0j2TL2aXqrHW8LVV97ZvN3JTe_q6wYqf2Ka44C5yhLO0PYIqEDdII6oMQ","givenName":null,"familyName":null,"user":"000792.42424500a2234d50a489ed0904739012.0222","email":null}` you are right, I am getting null of email, familyName and givenName. plz help me.

Thanks, I can get the correct email, givenName after removing my app from apple id logins. last question, should I remove my app from apple id logins whenever apple login?