gpt4 book ai didi

go - Firebase Go 需要主机 "firebaseio.com"

转载 作者:行者123 更新时间:2023-12-02 18:29:56 25 4
gpt4 key购买 nike

我是 firebase 新手,我正在尝试使用 Go 中的简单数据库设置一个小测试。我在数据库连接方面遇到了很多困难。这是我的代码:

tx := context.Background()
conf := &firebase.Config{
DatabaseURL: "https://mydb.europe-west1.firebasedatabase.app",
}
// Fetch the service account key JSON file contents
opt := option.WithCredentialsFile("./fireBasePrivateKey.json")

// Initialize the app with a service account, granting admin privileges
app, err := firebase.NewApp(ctx, conf, opt)
if err != nil {
log.Fatalln("Error initializing app:", err)
}

client, err := app.Database(ctx)
if err != nil {
log.Fatalln("Error initializing database client:", err)
}

使用该代码(来自官方文档),我在数据库客户端初始化时遇到错误:

invalid database url: wants host: .firebaseio.com

然后我尝试使用请求的网址:mydb.firebaseio.com -> 我收到另一个错误,告诉我我的数据库不在该区域,并给了我以前的数据库地址。

我还尝试了其他东西,例如 mydb.europe-west1.firebaseio.com 但这里它说我的证书对该网址无效...

我有点迷失了。我知道问题与我在创建数据库时选择的数据库的本地化有关,但我不明白如何使用 go 实现来处理它。

最佳答案

<projectname>.firebaseio.com直到去年年初,该格式一直是 Firebase 数据库 URL 的唯一格式。如今,美国的数据库仍然使用该格式,但其他地区的数据库使用 <dbname><region>.firebasedatabase.app您拥有的格式。

PR #423 中添加了对新 URL 格式的支持并于 version 4.6 of the Go Admin SDK 发布,于六月发布。升级到此版本(或更高版本),以确保您不再收到错误消息。

关于go - Firebase Go 需要主机 "firebaseio.com",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69556112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com