We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basically Im trying to sign in with the google using this
<ion-button expand="block" class="special-button" shape="round" (click)="loginWithGoogle()"> <img src="assets/img/google.png" alt="Icono de google"> </ion-button> Function async loginWithGoogle() { const user = await GoogleAuth.signIn(); console.log(user); }
Just in case it is important here is how I initialize
export class AppComponent { constructor() { GoogleAuth.initialize({ clientId: 'xxxx', scopes: ['profile', 'email'], grantOfflineAccess: true }) } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Basically Im trying to sign in with the google using this
Just in case it is important here is how I initialize
The text was updated successfully, but these errors were encountered: