更改Google登录弹出网址

时间:2019-06-28 11:55:33

标签: firebase firebase-authentication

我在路径/hntv和自定义域www.crowdform.co.uk上托管my firebase app

当我的firebase.auth().signInWithPopup(...)配置为authDomain时,可以使用hacker-news-tv.firebaseapp.com

const firebaseConfig = {
  authDomain: 'hacker-news-tv.firebaseapp.com',
  projectId: 'hacker-news-tv',
  ...
}

但是,block 3rd parties的隐身模式和浏览器无法登录。解决方法是将authDomain更改为我的自定义域

const firebaseConfig = {
    authDomain: 'www.crowdform.co.uk',
    projectId: 'hacker-news-tv',
    ...
  }

但是,popurl在

处打开

https://www.crowdform.co.uk/__/auth/handler

https://www.crowdform.co.uk/hntv托管的Firebase应用程序中,有什么不是每个都能转发到我的方法吗?

1 个答案:

答案 0 :(得分:0)