2017-02-24 185 views
1
var admin = require("firebase-admin"); 
var serviceAccount = require("service_account.json") 

admin.initializeApp({ 
    credential: admin.credential.cert(serviceAccount), 
    databaseURL: "https://******.firebaseio.com" 
}); 

返回:火力地堡AdminSDK initializeApp返回INVALID_TOKEN

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, generate a new key file at https://console.firebase.google.com/project/_/settings/serviceaccounts/adminsdk .

的service_account和密钥ID是否存在。

+0

服务器时间未同步。此线程有助于解决,http://stackoverflow.com/questions/41712965/how-to-connect-to-firebase-by-firebase-admin-against-a-proxy – user3288414

+1

我会确保添加此案例到即将发布的版本的错误消息,以便将来的开发人员不会遇到此问题。感谢您报告!我很高兴你把这一切都弄清楚了。 – jwngr

回答

0

同样的事件发生在我身上。我有一个结构,管理员是nodejs,客户端是android和ios。这发生在我身上,当我试图在我的本地主机中运行,然后我将管理员移至heroku并解决。

+1

服务器时间未同步。你可能遇到了这个问题。此线程有助于解决,http://stackoverflow.com/questions/41712965/how-to-connect-to-firebase-by-firebase-admin-against-a-proxy – user3288414