Questions tagged [apple-authentication]
14 questions
4
votes
2 answers
sign_in_with_apple: AuthorizationErrorCode.invalidResponse: No code query parameter set
I use the latest version of sign_in_with_apple using the following code to allow signing in with Apple to my Flutter app on Android.
final credential = await SignInWithApple.getAppleIDCredential(
scopes: [
AppleIDAuthorizationScopes.email,
…

PlutoHDDev
- 540
- 7
- 25
3
votes
1 answer
Firebase Apple Auth not working with .aab file
So I have enabled apple auth within my Firebase console and have already done all the steps needed to activate it within my apple console. Everything works just fine with a signed .apk file but when I push my package in.aab format to the Playstore I…

Pedif
- 144
- 8
2
votes
1 answer
apple-signin-auth node js react native error: Invalid id token public key id
I have a React native front end where I use invertase/react-native-apple-authentication to handle Apple Authentication.
Then I have a NodeJS back end, where I use A-Tokyo/apple-signin-auth to handle Apple authenticated users and let them access…
user9408779
2
votes
0 answers
Login with Apple doesn't work with next-auth (OPError: invalid_client)
Using Nextjs and next-auth for everything authentication.
We've successfully integrated email (magic link), Facebook, and Google auth, but for some reason, Apple auth is still a real PITA.
I've set up the Provider, as usual:
AppleProvider({
…

Nick Rameau
- 1,258
- 14
- 23
1
vote
0 answers
React Native AppleId Authentication: email null with "hide my email" option
Environment:
Emulator: iPhone 14 Pro
@invertase/react-native-apple-authentication
I have following code for AppleId SignIn:
let appleAuthRequestResponse = await appleAuth.performRequest({
requestedOperation: appleAuth.Operation.LOGIN,
…

spatak
- 1,039
- 1
- 14
- 25
1
vote
1 answer
SwiftUI - Firebase, Sign In With Apple, custom Button
I would like to create my own SignInWithAppleButton with my own design, following the guidelines of course.
I am having trouble translating the startSignInWithAppleFlow function from Swift to SwiftUI.
struct ContentView: View {
var body:…

Luda
- 7,282
- 12
- 79
- 139
0
votes
0 answers
Is there a way to communicate with user if they have used their Apple ID as phone number
In My app I am using Sign In with Apple option. Here I face an issue with users who done sign up Apple ID with phone number. I wanted to send a notification to user regarding the events which is upcoming which is available on back end.
Here is my…

AJ Sanjay
- 1,276
- 1
- 12
- 29
0
votes
0 answers
Flutter - apple auth - which token will never expire when signing in using apple
I am using the sign_in_with_apple package in flutter, to get details when a user logs in, and send it to Nest Js backend.
also, I do Facebook authentication in the flutter side, I get the access token and send it to the backend.
So, for the Facebook…

Yassin Rassul
- 15
- 4
0
votes
0 answers
Get Contact List From ICloud API in JS
If a user authenticates with their Apple ID on my web app (using js), is there a way for my app to retrieve their contact list from iCloud using their API
i have searched on this topic and coudn't find much

sam b
- 1
0
votes
0 answers
How to setup Apple Sign-In using hapi's bell?
I'm using bell (https://www.npmjs.com/package/bell) for authentication plugin. I used version 10.0.0.
I've setup the configuration in Apple developer site. I got this issue:
ERROR secretOrPrivateKey must be an asymmetric key when using ES256
Here…

ridoansaleh
- 604
- 9
- 20
0
votes
1 answer
Revoke Apple account access in Android using Firebase
I have implemented apple account authentication in Android by using Firebase
https://firebase.google.com/docs/auth/android/apple
We have to revoke the access for apple account in our application. For iOS, authorisation code can be fetched from…

user3752302
- 21
- 3
0
votes
1 answer
Using selenium to login apple connect always need verify
I use selenium with chromedriver to login apple connect website on ubuntu 20.04 and chrome version 99.0.4844.51
The login page is easy to handle but next it detect the new browser and require device verify code. I think maybe I type once then it…

JackWu
- 1,036
- 1
- 12
- 22
0
votes
1 answer
Firebase, Apple sign up, SwiftUI - ASAuthorizationControllerDelegate success function not called
I've implemented my own AppleSignUpButton. It calls this piece of code to do the actual Apple sigThe spinner just keeps spinning.
When I press cancel this function is called as expected:
func authorizationController(controller _:…

Luda
- 7,282
- 12
- 79
- 139
-1
votes
0 answers
authorizationController(didCompleteWithAuthorization authorization: ASAuthorization) is not called, but didCompleteWithError called
I'm trying to implement authorization via Apple account, I've made several options from different sources, but none of the options worked. The problem is the following when I click on the authorization button I enter the password from the account…