1

アプリケーションを Ionic 1 から Ionic 2 に更新します。最初のアプリ (Ionic 1) では、AngularFire とカスタム認証 (Slim Framework を使用) を使用します。Ionic 2 では、AngularFire2 (および firebase 2.4.2) で同じことをしようとしましたが、firebase に認証するとこのエラーが発生します。

コード (App.ts):

@App({
  templateUrl: './build/app.html',
  providers: [
    FIREBASE_PROVIDERS,
    defaultFirebase('https://<APP>.firebaseio.com/'),
    firebaseAuthConfig({
      provider: AuthProviders.Custom,
      method: AuthMethods.CustomToken
    })
  ]
})

コード (Login.ts):

export class LoginPage {
  n_adherent:number = null;
  password:string = '';

  constructor(..., private af:AngularFire, private _authService:AuthService) {}

  connect() {
    let credentials = {
      n_adherent: parseInt(this.n_adherent, 10),
      password: this.password
    };

    // Send credentials to my PHP server
    this._autService.login(credentials)
      .subscribe(data => {
        if (data.token) {

          // I get the token

          let token = data.token;

          // Authenticate to Firebase
          this.af.auth.login(token)
            .then((data) => console.log(data))
            .catch((error) => console.log(error));
        }
      });
  }
}

エラー (コンソール):

You must include credentials to use this auth method.

firebase/php-jwt からのコード:

<?php
use \Firebase\JWT\JWT;

$key = "example_key";
$token = array(
    "iss" => "http://example.org",
    "aud" => "http://example.com",
    "iat" => 1356999524,
    "nbf" => 1357000000
);

/**
 * IMPORTANT:
 * You must specify supported algorithms for your application. See
 * https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms-40
 * for a list of spec-compliant algorithms.
 */
$jwt = JWT::encode($token, $key);
$decoded = JWT::decode($jwt, $key, array('HS256'));

print_r($decoded);

/*
 NOTE: This will now be an object instead of an associative array. To get
 an associative array, you will need to cast it as such:
*/

$decoded_array = (array) $decoded;

/**
 * You can add a leeway to account for when there is a clock skew times between
 * the signing and verifying servers. It is recommended that this leeway should
 * not be bigger than a few minutes.
 *
 * Source: http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html#nbfDef
 */
JWT::$leeway = 60; // $leeway in seconds
$decoded = JWT::decode($jwt, $key, array('HS256'));

?>

あなたの助けが必要です。

4

2 に答える 2

0

あなたのトークンは文字列ですよね?
同じエラーが発生したため、ソース コードをデバッグする必要がありました。メソッドが 2 つのパラメーターを待機し
ていることに気付きました。this.af.auth.login

簡単に言えば、次を使用します
this.af.auth.login(token, {})

乾杯、マルセル

于 2016-06-24T08:12:29.707 に答える