Warning
This plugin is "virtually" archived as there no way to reach the author in any medium Please use: https://github.com/Cap-go/capacitor-social-login as alternative follow migration here
@codetrix-studio/capacitor-google-auth
CAPACITOR 6
Capacitor plugin for Google Auth.
In the v6 version, clientId
in the initialize method is used in priority over other places you could set up. If before you were using this only on the web, unset it on mobile. Or set it conditionally to replicate old behavior.
PRs are welcome and much appreciated that keeps this plugin up to date with Capacitor and official Google Auth platform library feature parity.
Try to follow good code practices. You can even help keeping the included demo updated.
PRs for features that are not aligned with the official Google Auth library are discouraged.
(We are beginner-friendly here)
npm i --save @codetrix-studio/capacitor-google-auth
# pnpm
pnpm add @codetrix-studio/capacitor-google-auth
# yarn
yarn add @codetrix-studio/capacitor-google-auth
npx cap update
If need migrate to different Capacitor versions see instruction for migrate plugin to new version.
Register plugin and manually initialize
import { GoogleAuth } from '@codetrix-studio/capacitor-google-auth';
// use hook after platform dom ready
GoogleAuth.initialize({
clientId: 'CLIENT_ID.apps.googleusercontent.com',
scopes: ['profile', 'email'],
grantOfflineAccess: true,
});
or if need use meta tags (Optional):
<meta name="google-signin-client_id" content="{your client id here}" />
<meta name="google-signin-scope" content="profile email" />
clientId
- The app's client ID, found and created in the Google Developers Console.scopes
– same as Configure scopesgrantOfflineAccess
– boolean, defaultfalse
, Set if your application needs to refresh access tokens when the user is not present at the browser.
Use it
GoogleAuth.signIn();
init hook
// app.component.ts
constructor() {
this.initializeApp();
}
initializeApp() {
this.platform.ready().then(() => {
GoogleAuth.initialize()
})
}
sign in function
import { GoogleAuth } from "@codetrix-studio/capacitor-google-auth";
import { Auth, GoogleAuthProvider, signInWithCredential } from '@angular/fire/auth';
async googleSignIn() {
let googleUser = await GoogleAuth.signIn();
/*
If you use Firebase you can forward and use the logged in Google user like this:
*/
constructor(private auth: Auth){}
const googleUser = await GoogleAuth.signIn();
const _credential = GoogleAuthProvider.credential(googleUser.authentication.idToken);
return signInWithCredential(this.auth, _credential);
}
<script setup lang="ts">
import { defineComponent, onMounted } from 'vue';
import { GoogleAuth } from '@codetrix-studio/capacitor-google-auth';
onMounted(() => {
GoogleAuth.initialize();
});
async function logIn() {
const response = await GoogleAuth.signIn();
console.log(response);
}
script>
or see more CapacitorGoogleAuth-Vue3-example
-
Create in Google cloud console credential Client ID for iOS and get Client ID and iOS URL scheme
-
Add identifier
REVERSED_CLIENT_ID
as URL schemes toInfo.plist
from iOS URL scheme
(Xcode: App - Targets/App - Info - URL Types, click plus icon) -
Set Client ID one of the ways (by order of importance in the plugin):
- Set
clientId
in initialize method - Set
iosClientId
incapacitor.config.json
- Set
clientId
incapacitor.config.json
- Set
CLIENT_ID
inGoogleService-Info.plist
- Set
Set Client ID (by order of importance in the plugin):
- Set
clientId
in initialize method - Set
androidClientId
incapacitor.config.json
- Set
clientId
incapacitor.config.json
- Set
server_client_id
instrings.xml
<resources>
<string name="server_client_id">Your Web Client Keystring>
resources>
Changing Play Services Auth version (Optional) :
This plugin uses com.google.android.gms:play-services-auth:21.2.0
by default, you can override it providing gmsPlayServicesAuthVersion
at variables.gradle
Refresh method
This method should be called when the app is initialized to establish if the user is currently logged in. If true, the method will return an accessToken, idToken and an empty refreshToken.
checkLoggedIn() {
GoogleAuth.refresh()
.then((data) => {
if (data.accessToken) {
this.currentTokens = data;
}
})
.catch((error) => {
if (error.type === 'userLoggedOut') {
this.signin()
}
});
}
Name | Type | Description |
---|---|---|
clientId | string | The app's client ID, found and created in the Google Developers Console. |
iosClientId | string | Specific client ID key for iOS |
androidClientId | string | Specific client ID key for Android |
scopes | string[] | Scopes that you might need to request to access Google APIs https://developers.google.com/identity/protocols/oauth2/scopes |
serverClientId | string | This ClientId used for offline access and server side handling |
forceCodeForRefreshToken | boolean | Force user to select email address to regenerate AuthCode used to get a valid refreshtoken (work on iOS and Android) |
Provide configuration in root capacitor.config.json
{
"plugins": {
"GoogleAuth": {
"scopes": ["profile", "email"],
"serverClientId": "xxxxxx-xxxxxxxxxxxxxxxxxx.apps.googleusercontent.com",
"forceCodeForRefreshToken": true
}
}
}
or in capacitor.config.ts
///const config: CapacitorConfig = { plugins: { GoogleAuth: { scopes: ['profile', 'email'], serverClientId: 'xxxxxx-xxxxxxxxxxxxxxxxxx.apps.googleusercontent.com', forceCodeForRefreshToken: true, }, }, }; export default config;