我正在尝试initialize the Firebase Admin SDK,仅使用环境变量(无法访问文件系统)。
我有service-account-file.json
文件,可以通过以下方式使其在本地运行:
export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account-file.json"
...
myfile.go:
app, err := firebase.NewApp(context.Background(), nil)
但是,我想将service-account-file.json
的内容放入一个环境变量中,并使用其值初始化firebase Admin SDK。
有一个open issue声称您可以通过CredentialsFromJSON进行操作,但是我不太清楚。
有人在工作吗?如果可以,请提供示例吗?
答案 0 :(得分:1)
尝试:
export JSON_CREDS="{\"type\":\"service_account\",\"project_id\":\"project-id\",\"private_key_id\":\"some_number\",\"private_key\":\"\",\"client_email\":\"<api-name>api@project-id.iam.gserviceaccount.com\",\"client_id\":\"...\",\"auth_uri\":\"https:\/\/accounts.google.com\/o\/oauth2\/auth\",\"token_uri\":\"https:\/\/accounts.google.com\/o\/oauth2\/token\",\"auth_provider_x509_cert_url\":\"https:\/\/www.googleapis.com\/oauth2\/v1\/certs\",\"client_x509_cert_url\":\"https:\/\/www.googleapis.com\/...<api-name>api%40project-id.iam.gserviceaccount.com\"}"
...
import "google.golang.org/api/option"
...
app, err := firebase.NewApp(context.Background(), nil, option.WithCredentialsJSON([]byte(os.Getenv("JSON_CREDS"))))