是否可以使用Firebase Admin Python SDK添加TOTP多因素身份验证?

dfuffjeb  于 2023-10-14  发布在  Python
关注(0)|答案(1)|浏览(98)

我在浏览一些firebase文档时遇到了一些麻烦。我在Web应用程序上使用Firebase JS SDK,在后端使用Firebase Admin SDK(Python)。我已通过GCP启用身份平台。
根据这里的文档:https://firebase.google.com/docs/auth/web/totp-mfa

If you haven't done so already, install the Firebase JavaScript SDK.

TOTP MFA is only supported on the modular Web SDK, versions v9.19.1 and above.

If you haven't done so already, install the Firebase Admin SDK.

TOTP MFA is only supported on Firebase Admin SDK versions 11.6.0 and above.

没有规定只有Node.js支持这个MFA特性,但是我找不到任何相关的文档来说明如何在我的Python/Flask环境中做到这一点。是否可以使用最新的Firebase Admin Python SDK来使用此功能?
谢谢你,谢谢
到目前为止,我已经查看了文档,但还没有找到任何相关的资源/信息来说明如何让它工作。我确实在生产中使用了Firebase Admin Python SDK。

v09wglhw

v09wglhw1#

我检查了最近的releases of the Python Admin SDK,没有看到任何提到TOTP支持-所以似乎确实没有添加这种支持。
我建议在firebase-admin-python repo上提交一个功能请求,或者更好:请提交PR以添加它。

相关问题