Posts

Post marked as solved
22 Replies
It seems we just got this working after submitting a technical issue.When you put the scope in the URL it must be percent encoded:https://appleid.apple.com/auth/authorize?client_id=[CLIENT_ID]&redirect_uri=[REDIRECT_URI]&response_type=[RESPONSE_TYPE]&scope=name%20email&response_mode=[RESPONSE_MODE]&state=[STATE]Ours was sending scope=name+email, which while in spec, was not working for some users.