Questions
Why does the Sign in with Apple bridge not request name and email?
Hi, I enabled Sign in with Apple on my app. After trying for days, it's clear that the Median bridge for Sign in with Apple does not request name and email scopes properly from Apple. No matter if it's a brand new user, or an existing user who erased their previous Apple sign-in, you never get name and email prompts from Median. I copied the recommended code exactly, tried everything. Accounts are created with null name or email every time. This is clearly a bug on the Median side and hoping someone there can address it.
Median's native Sign in with Apple bridge is not requesting fullName and email scopes from Apple's ASAuthorizationAppleIDProvider, even though we pass scope: 'name email' in the JavaScript call.
Callback returns: firstName: null, lastName: null, email: null
We've reset the Apple Sign In session to force a fresh authorization — same result
Would expect Median's native bridge to pass requestedScopes = [.fullName, .email] to the ASAuthorizationAppleIDRequest
Apple should ask the user for consent to share name/email
The id_token should include these claims
Thank you