<legend id='lcuI2'><style id='lcuI2'><dir id='lcuI2'><q id='lcuI2'></q></dir></style></legend>
    1. <small id='lcuI2'></small><noframes id='lcuI2'>

          <bdo id='lcuI2'></bdo><ul id='lcuI2'></ul>
        <i id='lcuI2'><tr id='lcuI2'><dt id='lcuI2'><q id='lcuI2'><span id='lcuI2'><b id='lcuI2'><form id='lcuI2'><ins id='lcuI2'></ins><ul id='lcuI2'></ul><sub id='lcuI2'></sub></form><legend id='lcuI2'></legend><bdo id='lcuI2'><pre id='lcuI2'><center id='lcuI2'></center></pre></bdo></b><th id='lcuI2'></th></span></q></dt></tr></i><div id='lcuI2'><tfoot id='lcuI2'></tfoot><dl id='lcuI2'><fieldset id='lcuI2'></fieldset></dl></div>
        <tfoot id='lcuI2'></tfoot>
      1. Firebase 令牌验证

        Firebase Token Verification(Firebase 令牌验证)
        <legend id='Gdzm4'><style id='Gdzm4'><dir id='Gdzm4'><q id='Gdzm4'></q></dir></style></legend>
          <i id='Gdzm4'><tr id='Gdzm4'><dt id='Gdzm4'><q id='Gdzm4'><span id='Gdzm4'><b id='Gdzm4'><form id='Gdzm4'><ins id='Gdzm4'></ins><ul id='Gdzm4'></ul><sub id='Gdzm4'></sub></form><legend id='Gdzm4'></legend><bdo id='Gdzm4'><pre id='Gdzm4'><center id='Gdzm4'></center></pre></bdo></b><th id='Gdzm4'></th></span></q></dt></tr></i><div id='Gdzm4'><tfoot id='Gdzm4'></tfoot><dl id='Gdzm4'><fieldset id='Gdzm4'></fieldset></dl></div>
              <tbody id='Gdzm4'></tbody>
            <tfoot id='Gdzm4'></tfoot>

              <small id='Gdzm4'></small><noframes id='Gdzm4'>

                <bdo id='Gdzm4'></bdo><ul id='Gdzm4'></ul>
                  本文介绍了Firebase 令牌验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个 PHP 后端和一个 Android 客户端.使用客户端,用户可以通过 Firebase 使用 Google 或 Facebook 登录我的应用程序.我从 FirebaseUser 获取令牌并将其发送到我的服务器.很简单,第一部分(header)包含算法(即 RS256),第二部分(payload)包含所有与用户相关的数据.第三部分是前两个的签名,用于在我的后端启用验证.问题是,我不知道该怎么做.更具体地说是什么.

                  I have a PHP backend and an Android client. With the client the users can log into my app using either Google or Facebook, both via Firebase. I get the token from the FirebaseUser and send it to my server. It is straightforward that the first section (the header) contains the algorithm (which is RS256) and the second one (the payload) has all the user related data. There's a third section which is the signature of the first two to enable verification on my backend. The problem is, I don't know how to do that. More specifically with what.

                  我使用 JWT.io 来检查我的令牌并尝试验证它,但没有成功.由于使用的算法是 RS256,所以验证应该通过公钥来完成.但是什么公钥?我用我的应用程序的密钥库试过,用谷歌的证书试过,但它只是一直说它是无效的.我知道 headerkid 字段是签名密钥的 ID,我应该查找它,但我不知道在哪里.

                  I used JWT.io to check my token and tried to verify it with no luck. Since the algorithm used is RS256, the verification should be done via the public key. But what public key? I tried with my app's keystore, tried it with Google's certs, but it just keeps saying it's invalid. I understand that the header's kid field is the signing key's ID and I should look for it, but I don't know where.

                  Firebase 文档也无济于事.有一个关于 ID 令牌验证 的指南,但这没用,因为它是 Java/Node.JS,它仍然没有说任何关于公钥的内容.

                  The Firebase docs don't help either. There is a guide about ID token verification, but that's just useless because it's Java / Node.JS and it still doesn't say anything about public keys.

                  所以问题是:我从哪里获得公钥?

                  推荐答案

                  好的,所以我挖了 Firebase Server SDK 的源码,找到了公钥的位置:https://www.googleapis.com/robot/v1/metadata/x509/securetoken@system.gserviceaccount.com

                  Okay, so I dug into the source of the Firebase Server SDK and found the location of the public keys: https://www.googleapis.com/robot/v1/metadata/x509/securetoken@system.gserviceaccount.com

                  真的不知道他们为什么不能把它放在他们的网站上......

                  Don't really know why they just couldn't put it on their website...

                  无论如何,我不确定,但我猜这些密钥每天都在变化(就像 OAuth2 密钥一样),因此您必须不时检查并重新缓存它们在您的服务器上.

                  Anyways, I'm not sure, but I guess that these keys change on a daily basis (just like the OAuth2 keys do), so you must check and re-cache them on your server every now and then.

                  此外,您必须检查以下值:

                  Also, you have to check the following values:

                  • alg == "RS256"
                  • iss:https://securetoken.google.com/<firebaseProjectID>
                  • aud:<firebaseProjectID>
                  • sub 非空

                  在 this similar question 找到这些(只需滚动到答案的底部),通过搜索特定的 googleapis.com URL 找到.

                  Found these at this similar question (just scroll to the bottom of the answer), which was found by searching for that specific googleapis.com URL.

                  这篇关于Firebase 令牌验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  PHP Upload File Validation(PHP 上传文件验证)
                  PHP Error - Uploading a file(PHP 错误 - 上传文件)
                  How can I write tests for file upload in PHP?(如何在 PHP 中编写文件上传测试?)
                  php resizing image on upload rotates the image when i don#39;t want it to(php在上传时调整图像大小会在我不想要它时旋转图像)
                  How to send additional data using PLupload?(如何使用 PLupload 发送附加数据?)
                  change button text in js/ajax after mp4 =gt;mp3 conversion in php(在 php 中的 mp4 =gt;mp3 转换后更改 js/ajax 中的按钮文本)

                    1. <i id='1FH0T'><tr id='1FH0T'><dt id='1FH0T'><q id='1FH0T'><span id='1FH0T'><b id='1FH0T'><form id='1FH0T'><ins id='1FH0T'></ins><ul id='1FH0T'></ul><sub id='1FH0T'></sub></form><legend id='1FH0T'></legend><bdo id='1FH0T'><pre id='1FH0T'><center id='1FH0T'></center></pre></bdo></b><th id='1FH0T'></th></span></q></dt></tr></i><div id='1FH0T'><tfoot id='1FH0T'></tfoot><dl id='1FH0T'><fieldset id='1FH0T'></fieldset></dl></div>
                        <legend id='1FH0T'><style id='1FH0T'><dir id='1FH0T'><q id='1FH0T'></q></dir></style></legend>
                            <tbody id='1FH0T'></tbody>
                        • <small id='1FH0T'></small><noframes id='1FH0T'>

                          <tfoot id='1FH0T'></tfoot>

                            <bdo id='1FH0T'></bdo><ul id='1FH0T'></ul>