Как интегрировать вход Google plus в мое приложение ionic (v3) - PullRequest
0 голосов
/ 08 января 2019

Я сделал следующее:

import { QuestionPage } from '../question/question';
import { GooglePlus } from '@ionic-native/google-plus';

    g_login(){
    if(this.platform.is('ios')){
      this.googlePlus.login({})
      .then(res => console.log(res))
      .catch(err => console.error(err));
    }else{
      this.googlePlus.login({
        'webClientId': '********-i5v3qk3dj7*********j6s7vr.apps.googleusercontent.com'
      })
      .then(res => console.log(res))
      .catch(err => console.error(err));
    }

  }

И я получил следующую ошибку:

Код ошибки 12500

...