我在路径/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应用程序中,有什么不是每个都能转发到我的方法吗?