3

FireBase での認証に Google プラス記号を使用するのが好きです。

Google Plus の signinCallback は auth オブジェクトを返します。この情報を使用して、ユーザーを FireBase に安全にサインインさせるにはどうすればよいですか?

Auth auth オブジェクトは次のようになります。

access_token: "ya29.2342324234"
authuser: "0"
client_id: "23ss4443234"
code: "4/tLijpRBvHp9hDNc-hcZk00bqvpz4.2342342"
cookie_policy: "single_host_origin"
expires_at: "136334897186"
expires_in: "3600"
g-oauth-window: Window
g_user_cookie_policy: "single_host_origin"
id_token: "324234234234.234234234.bW--234234---E2-Hj1I"
issued_at: "1364893586"
prompt: "consent"
scope: "https://www.googleapis.com/auth/plus.login https://www.googleapis.com/auth/userinfo.email"
session_state: "234234234234234234..32cd"
state: ""
token_type: "Bearer"
4

1 に答える 1

3

カスタム認証トークンを使用して、任意の認証システムを Firebase と統合できます。参照: https://www.firebase.com/docs/security/custom-login.html

Firebase には Firebase Simple Login サービスと呼ばれるサービスがあり、いくつかの一般的な認証シナリオを簡単に処理できます。ただし、Google Plus 認証は処理しません。代わりに、Singly とのサードパーティ統合を確認できます: https://www.firebase.com/docs/security/authentication.html

于 2013-04-02T16:17:23.087 に答える