Posts

Post not yet marked as solved
0 Replies
326 Views
Hi,I'm just finishing up the implementation of the Sign in with Apple (REST API) on a web service and just noticed a different behavior when using Safari with TouchID. The request sent to the redirected URL is as follows:With TouchID:{ state: "some_state", code: "authorization_code", user: {} }Without TouchID, using the password:{ state: "some_state", code: "authorization_code", user: { name: { firstName: "some_first_name", lastName: "some_last_name" }, email: "user@example.com" } }The point is: user data is not POSTed on the redirect URL when authenticating with TouchID. The flow is somehow different since it doesn't event prompts the user to choose from the available privacy options (change the name, send a private email) as it normally does when using password authentication.I have no idea what am I missing here, maybe someone's been there already and found a solution.Thanks!
Posted
by stingus.
Last updated
.