Firebase 管理 SDK 无法解码 id 令牌

问题描述

我是这里的新手,这是我的第一个问题。我正在使用 Typescript 和 Express 创建一个 API,该 API 连接到我的本地数据库并希望使用 firebase 对用户进行身份验证。我阅读了他们文档中的说明,并认为我正在按照他们的要求设置服务帐户和管理 SDK。

当我在客户端和服务器端控制台令牌时,我得到相同的令牌,但我不断收到此错误

FirebaseAuthError: Decoding Firebase ID token Failed. Make sure you passed the entire string JWT which represents an ID token. See https://firebase.google.com/docs/auth/admin/verify-id-tokens for details on how to retrieve an ID token.
    at FirebaseAuthError.FirebaseError [as constructor] (C:\coisas\nlw\node\node_modules\firebase-admin\lib\utils\error.js:44:28)
    at FirebaseAuthError.PrefixedFirebaseError [as constructor] (C:\coisas\nlw\node\node_modules\firebase-admin\lib\utils\error.js:90:28)
    at new FirebaseAuthError (C:\coisas\nlw\node\node_modules\firebase-admin\lib\utils\error.js:149:16)
    at C:\coisas\nlw\node\node_modules\firebase-admin\lib\auth\token-verifier.js:138:23
    at processticksAndRejections (node:internal/process/task_queues:96:5) {
  errorInfo: {
    code: 'auth/argument-error',message: 'Decoding Firebase ID token Failed. Make sure you passed the entire string JWT which represents an ID token. See https://firebase.google.com/docs/auth/admin/verify-id-tokens for details on how to retrieve an ID token.'
  },codePrefix: 'auth'

这是我正在尝试做的客户端(Vue 应用程序的 mixin):

fetchPedidos: async function (parametros) {
  return axios.get(parametros.endpoint,{
    params: {
      filter: parâmetros.filter || "",page: parâmetros.page || 0,size: parâmetros.size || 25,sort: parâmetros.sort || "",codCliente: parametros.codCliente || "",codPedido: parametros.codPedido || "",token: await firebase.auth().currentUser.getIdToken(true)
      }
    });
} (the then and catch are elsewere on the app)

这里是服务端,一个express的中间件功能

export async function firebase_auth(req: Request,res: Response,next: NextFunction) {
  const token = JSON.stringify(req.query.token)
  console.log(token);
  try {
    const _decodedToken = await admin.auth().verifyIdToken(token);
    return next();
  } catch (error) {
    console.log(error);
    return res.status(401).json({
      mensagem: "Erro na autenticação do usuário",erro: error
    });
  }
}

就像我之前说的,服务器端的 console.log 打印出离开站点的相同令牌,但是管理 sdk 抛出这个错误,说它无法解码。我在这里做错了什么?

我看过一些类似的问题,但无法解决问题。

*编辑: 控制台日志(req.query): Powershell print

至于解析器,我的 server.ts 中有这个:

app.use(cors(corsOptions));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());

*编辑 2: 原来我不应该为此使用 stringify,而只是指定我希望令牌作为函数调用中的字符串。感谢@Dharmaraj 和@samthecodingman 为我澄清这一点!

解决方法

事实证明我不应该为此使用 stringify,而只是指定我希望令牌作为函数调用中的字符串。感谢@Dharmaraj 和@samthecodingman 为我澄清这一点!

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...