私のアプリにg + loginを統合しようとしています。 ionic plugin add cordova-plugin-googleplus --variable REVERSED_CLIENT_ID=myreversedclientid
android device(ionic 2)のionic-native googleplusログインに関する問題
がconsole.developers.google.com
から生成された逆にクライアントIDを使用:使用したイオン-navtiveジープラスプラグインをインストールし
まず、私は、以下の手順に従ってきました。そのフォーマットはxxxxxxxx-xxxxxxxxx.apps.googleusercontent.com
です。
ログインボタンをクリックすると、g +ネイティブコールが試行されます。ここに私のTSコードです:
googleLogin() {
this.googlePlus.login({
'webClintId':'xxxxxxxx-xxxxxxxxx.apps.googleusercontent.com ',
}).then((res) => {
alert("Login successfull: " + res);
this.navCtrl.setRoot(HomePage);
}).catch((err) => {
alert("Login unsuccessfull: " + err);
});
}
そのブロックと印刷エラーしようとして、上記のコードを試して:私は、その後17
:
ログイン成功しなかったがhttps://ionicthemes.com/tutorials/about/ionic2-google-login
デベロッパーコンソールで 'Android Signing Certificate SHA-1'を設定しましたか? – hrdkisback