我有一个用PHP编写的移动应用程序身份验证服务器。所述服务器将JWT返回到应用,以使用signInWithCustomToken
登录到Firebase。
我已遵循此Firebase文档here,并使用PHP-JWT library创建令牌。但是,当我的应用在signInWithCustomToken
中使用令牌时,会产生FirebaseAuthInvalidCredentialsException: The custom token format is incorrect. Please check the documentation.
。然后,我尝试对JWT进行解码,但如下所示似乎没有什么错。
我尝试将算法更改为HS256
,并缩短了exp
,但错误仍然存在。
谁能告诉我我做错了什么吗?