0
私はライブラリangularfire2
を使って認証を行っています。角2のFirebaseから有効なアクセストークンを取得する方法
私はトークンで認証する必要があります。で使用するトークンを生成する方法:The custom token format is incorrect. Please check the documentation.
私はライブラリangularfire2
を使って認証を行っています。角2のFirebaseから有効なアクセストークンを取得する方法
私はトークンで認証する必要があります。で使用するトークンを生成する方法:The custom token format is incorrect. Please check the documentation.
は、あなたのことができFirebase管理SDKをカスタムトークンを生成するには:私はいくつかの値を渡すと
import { AngularFireAuth } from 'angularfire2/auth';
[...]
this.angukarFireAuth.auth.signInWithCustomToken(TOKEN);
、私はエラーが表示されます。 Admin Node.js SDKには、createCustomToken(uid, customClaims)
メソッドが用意されています。生成されたトークンをクライアントに送信して、signInWithCustomToken
に送信することができます。その詳細はこちら:https://firebase.google.com/docs/auth/admin/create-custom-tokens