使用jsonwebtoken时,验证Firebase自定义令牌以获取令牌ID失败 [英] Verifying firebase custom token to get token ID fails when using jsonwebtoken

查看:317
本文介绍了使用jsonwebtoken时,验证Firebase自定义令牌以获取令牌ID失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在后端,将通过firebase的admin SDK生成自定义令牌:

On the backend a custom token is generated via firebase's admin SDK thusly:

router.use('/get-token', (req, res) => {
    var uid = "big-secret";
    admin.auth().createCustomToken(uid)
      .then(function(customToken) {
        res.json({
          instanceID: customToken
        });
      })
      .catch(function(error) {
        console.log("Error creating custom token:", error);
    });
});

然后,客户端前端应用程序获取customToken,并通过它向后端发出请求以进行验证:

The client frontend app then picks up the customToken and with it makes a request back to the backend to verify:

const fbPrivateKey = serviceAccount.private_key;
const key = new NodeRSA(fbPrivateKey).exportKey('pkcs8-public-pem');
router.get('/verifyIdToken', cors(), (req, res) => {
  jwt.verify(req.headers.authorization.split('Bearer ')[1], key, { algorithms: ['RS256'] }, function(err, decoded) {
    console.log('err', err);
    console.log('decoded', decoded);
  });

这总是错误消息:JsonWebTokenError: invalid signature

This always errors with the message: JsonWebTokenError: invalid signature

这需要签名吗?如果有人可以解释这一点或有任何指示?

Does this need signing? If anyone could explain this or has any pointers?

更新: 通过 jwt.io 运行req.headers.authorization.split('Bearer ')[1]时,表示签名无效,但是随后我输入了私钥(key)并进行验证.

UPDATE: When running req.headers.authorization.split('Bearer ')[1] through jwt.io is says that the signature is invalid, but then I enter my private key (key) and it validates.

我收到方法调用不正确还是将错误的参数传递给jwt.verify()吗?

Am I getting the method calls incorrect or passing the wrong arguments into jwt.verify() ?

推荐答案

似乎您正在使用自定义标记调用verifyIdToken.那是行不通的. verifyIdToken仅接受"ID令牌".要从自定义令牌中获取ID令牌,请先调用 .然后在已登录的用户实例上调用 getToken()

It looks like you're calling verifyIdToken with a custom token. That's not going to work. verifyIdToken only accepts "ID tokens". To obtain an ID token from a custom token first call signInWithCustomToken(). Then call getToken() on the signed in user instance.

这篇关于使用jsonwebtoken时,验证Firebase自定义令牌以获取令牌ID失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆