How to change the app name for firebase authentication (what the user sees)

后端 未结 5 445
野趣味
野趣味 2020-12-13 04:39

Thanks to firebase v 3.9.0, my social OAuth is working great in my ionic app. I have one little change I\'d like to make. When prompted to login, it says \"Sign in to cont

5条回答
  •  旧时难觅i
    2020-12-13 05:11

    I asked firebase support and got the following reply. Items in italics are my additions.

    --

    Hi Jayen,

    Thank you for reaching out. I'll be happy to assist you.

    In order to update firebase-project-id.firebaseapp.com in the OAuth consent screen, you need a custom domain with Firebase Hosting (Firebase Console > Hosting > Connect Domain). This is because https://firebase-project-id.firebaseapp.com/__/auth/handler is hosted by Firebase Hosting. You need to point your custom domain to firebase-project-id.firebaseapp.com.

    When connecting the custom domain, if you are not hosting your app on firebase, use a new subdomain (e.g. app.yourdomain.com) and do not redirect it. Firebase will prompt you to add an entry on your DNS server and take care of the SSL certificate automatically.

    After connecting your custom domain to your Firebase project, you should also follow the steps below:

    1. Go to the Firebase Console > Select Project > Authentication > Sign-in method > Facebook > Copy the URL under 'To complete setup, add this OAuth redirect URI to your Facebook app configuration.'
    • It will look something like https://firebase-project-id.firebaseapp.com/__/auth/handler
    1. Replace the project ID with your custom domain. It will look something like: https://yourdomain.com/__/auth/handler

    2. Go to the GCP Console > Select project > API Manager > Credentials > Add the link in #2 to the 'Authorized redirect URIs'

    3. Then ensure to use yourdomain.com as the authDomain in your app's configuration instead of firebase-project-id.firebaseapp.com

      firebase.initializeApp({
          apiKey: ....,
          authDomain: 'yourdomain.com',
           ...
      });
      

    Let me know if you have any other questions regarding this.

    Regards,

    Aye

    --

    In my case, yourdomain.com is where I host my site, so I used app.yourdomain.com where I needed it.

    • Firebase Hosting URL
    • handler url: https://app.yourdomain.com/__/auth/handler
    • GCP Credentials
      • Choose the right one under OAuth 2.0 client IDs . The client ID will match the one you have configured Firebase with in your code.
    • authDomain: "app.yourdomain.com"

提交回复
热议问题