Firebase 3.0.1 Web API查询无效,导致iFrame安全性错误

时间:2016-05-19 19:05:43

标签: firebase

我对ref.once('value', callback)进行了简单的调用。回调永远不会被召唤。

相反,我在Chrome控制台中收到了此错误:Refused to display 'https://console.firebase.google.com/project/project6...redacted...73&parent=http%3A%2F%2Flocalhost%3A8204&pfname=&rpctoken=3...redacted...4' in a frame because it set 'X-Frame-Options' to 'DENY'.

我不知道这个iFrame是什么,或者这就是我没有得到回调的原因。 FWIW,我在localhost:8204

上运行我的开发应用程序

编辑: 这是一个更全面的代码示例。

import firebase from 'firebase/app'
import 'firebase/auth'
import 'firebase/database'

firebase.initializeApp({
  apiKey: config.firebaseApiKey,
  authDomain: `${config.firebaseAppName}.firebaseio.com`,
  databaseURL: `https://${config.firebaseAppName}.firebaseio.com`,
  storageBucket: config.firebaseStorageBucket
})

const ref = firebase.database().ref()

ref.once('value', callback)

1 个答案:

答案 0 :(得分:9)

好的问题只是在初始化配置authDomain字段中,我写了.firebaseio.com但它应该是.firebaseapp.com