3

目前,我正在使用 Firebase Admin SDK 在 NodeJS 服务器端应用程序中连接 Firebase 数据库。

但是我没有找到通过代理设置连接 Firebase 的选项,或者它可以检测到我的系统HTTP_PROXY环境变量。

当我运行节点脚本时node index.js,收到一些类似这样的超时消息(我知道在我的工作网络中,我无法直接连接到 Firebase)。

Error: Credential implementation provided to initializeApp() via the "credential
" property failed to fetch a valid Google OAuth2 access token with the following
 error: "connect ETIMEDOUT 216.58.200.237:443".                                 
    at ....erver\node_modules\firebase-adm
in\lib\firebase-app.js:74:23                                                    
    at process._tickCallback (internal/process/next_tick.js:103:7)                                                                                             

我还使用浏览器通过代理访问firebase控制台,它可以工作。

但是如何在 NodeJS 服务器端脚本中解决这个问题呢?

4

2 回答 2

11

如果运行 NodeJS 进程的主机上的日期和时间设置不正确,也会发生此错误。确保保持服务器时间同步。

完整的错误信息: Error: Credential implementation provided to initializeApp() via the "credential" property failed to fetch a valid Google OAuth2 access token with the following error: "Error fetching access token: invalid_grant (Invalid JWT: Token must be a short-lived token and in a reasonable timeframe)". The most likely cause of this error is using a certificate key file which has been revoked. Make sure the key ID for your key file is still present at https://console.firebase.google.com/iam-admin/serviceaccounts/project. If not, generatea new key file at https://console.firebase.google.com/project/_/settings/serviceaccounts/adminsdk.

于 2017-01-30T15:16:44.537 回答
0

昨天遇到同样的问题,解决了。

让我们直截了当,您收到此错误是因为您所在地区禁止 Google 服务,因此您应该通过代理访问 Firebase。这是一个解释它是如何完成的博客

对于这种特定情况,您应该

  1. 准备一个允许您访问 Google 服务的代理服务器,然后
  2. https-proxy-agent通过 npm 或 yarn安装包,然后
  3. 像这样在您的 Firebase 应用程序初始化代码中包含代理
import HttpsProxyAgent from 'https-proxy-agent';
import * as admin from 'firebase-admin';
...
const agent = new HttpsProxyAgent('url to your proxy server');
admin.initializeApp({
  credential: admin.credential.applicationDefault(agent), 
  // Or any function you would like to use to provide your application's credentials
  // But remember to include the proxy agent in the parameter
  httpProxy: agent
});

但请记住不要将此更改提交到您的存储库中,因为此问题专门出现在无法访问 Google 服务的地区。

于 2022-03-05T07:25:41.223 回答