Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am using Firebase Apple sign-in for user login but I am not sure where do I put https://myapp.firebaseapp.com/__/auth/handler?

I am using Firebase Apple sign-in-with-apple for user login but I am not sure where do I put https://myapp.firebaseapp.com/__/auth/handler

This is documentation from Firebase login. *To complete set up, add this authorization callback URL to your app configuration in the Apple Developer Console. Additional steps may be needed to verify ownership of this web domain to Apple. Learn more * Learn more takes me here. https://firebase.google.com/docs/auth/?authuser=0

Do I need to do this for mobile react native app?

like image 531
Amit Patel Avatar asked May 30 '20 02:05

Amit Patel


People also ask

How do I set up login with Apple Firebase?

Enable Apple as a sign-in providerAdd Firebase to your Apple project. Be sure to register your app's bundle ID when you set up your app in the Firebase console. In the Firebase console, open the Auth section. On the Sign in method tab, enable the Apple provider.

Which method will you call to logout a user from Firebase?

If you'd like to sign the user out of their current authentication state, call the signOut method: import auth from '@react-native-firebase/auth'; auth() . signOut() .

How do I sign in to Firebase with Apple Auth?

In the Firebase console, open the Auth section. On the Sign in method tab, enable the Apple provider. If you are only using Sign In with Apple in an app, you can leave the Service ID, Apple Team ID, private key and key ID fields empty.

How do I integrate firebase with Apple App Store?

Add Firebase to your Apple project. Be sure to register your app's bundle ID when you set up your app in the Firebase console. In the Firebase console, open the Auth section. On the Sign in method tab, enable the Apple provider.

What types of actions can I perform with Firebase authentication?

When using Firebase Authentication, this may include the following actions: Link an email address to an anonymized Apple ID or vice versa. Link a non-anonymous social credential (Facebook, Google, etc) to an anonymized Apple ID or vice versa. The above list is not exhaustive.

Where can I find the photo URL for Firebase Auth?

For a list of error codes, see the API reference. Unlike other providers supported by Firebase Auth, Apple does not provide a photo URL. Also, when the user chooses not to share their email with the app, Apple provisions a unique email address for that user (of the form [email protected] ), which it shares with your app.


1 Answers

If you go to Identifiers in the Developer Center, you can click on your application and then select Edit for the Sign In With Apple capability and enter the Firebase callback URL

like image 129
got2jam Avatar answered Oct 19 '22 08:10

got2jam