Hey,
as the requirement of my website needs to listen for the success of Apple Sign In, I need to use the popup function.
My initializations are
AppleID.auth.init({
clientId : '[CLIENT_ID]',
redirectURI : '[REDIRECT_URI]',
usePopup : true
});
however, when the pop up asks me "Do you want to continue using ‘Service ID for ***’ with your Apple ID, XXXX?", there isn't any response after I click Continue or Cancel button.
Do you guys know how to fix this? or is it a bug from Apple?
Thanks!
Hi
when "usePopup" set to true, we will only post the data back to the "redirectURI" provided in AppleID.auth.init (redirectURI)
For example if the app that invoked Sign in with Apple JS has url "https://www.example.com/test" then the redirectURI should be "https://www.example.com"
However if the app url is "https://www.example2.com/test" then the app will not get any data