CapacitorGoogleAuth
Capacitor plugin for Google Auth. Lightweight & no dependencies.
Install / Use
/learn @CodetrixStudio/CapacitorGoogleAuthREADME
<h1 align="center">CapacitorGoogleAuth</h1> <p align="center"><strong><code>@codetrix-studio/capacitor-google-auth</code></strong></p> <p align="center"><strong>CAPACITOR 6</strong></p> <p align="center"> Capacitor plugin for Google Auth. </p> <br> <p align="center"> <a href="https://www.npmjs.com/package/@codetrix-studio/capacitor-google-auth"><img alt="npm" src="https://img.shields.io/npm/v/@codetrix-studio/capacitor-google-auth"></a> <a href="https://www.npmjs.com/package/@codetrix-studio/capacitor-google-auth"><img alt="npm" src="https://img.shields.io/npm/dt/@codetrix-studio/capacitor-google-auth"></a> <a href="https://www.npmjs.com/package/@codetrix-studio/capacitor-google-auth"><img alt="npm" src="https://img.shields.io/npm/dw/@codetrix-studio/capacitor-google-auth"></a> <a href="https://libraries.io/npm/@codetrix-studio%2Fcapacitor-google-auth"><img alt="Dependents (via libraries.io)" src="https://img.shields.io/librariesio/dependents/npm/@codetrix-studio/capacitor-google-auth"></a> <a href="https://packagephobia.com/result?p=@codetrix-studio/capacitor-google-auth"><img alt="install size" src="https://packagephobia.com/badge?p=@codetrix-studio/capacitor-google-auth"></a> </p>[!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
Breaking change in V6
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.
Contributions
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)
Install
1. Install package
npm i --save @codetrix-studio/capacitor-google-auth
# pnpm
pnpm add @codetrix-studio/capacitor-google-auth
# yarn
yarn add @codetrix-studio/capacitor-google-auth
2. Update capacitor deps
npx cap update
Updating
If need migrate to different Capacitor versions see instruction for migrate plugin to new version.
Usage
WEB
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" />
Options
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();
Angular
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);
}
Vue 3
<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
iOS
-
Create in Google cloud console credential Client ID for iOS and get Client ID and iOS URL scheme
-
Add identifier
REVERSED_CLIENT_IDas URL schemes toInfo.plistfrom iOS URL scheme<br> (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
clientIdin initialize method - Set
iosClientIdincapacitor.config.json - Set
clientIdincapacitor.config.json - Set
CLIENT_IDinGoogleService-Info.plist
- Set
Android
Set Client ID (by order of importance in the plugin):
- Set
clientIdin initialize method - Set
androidClientIdincapacitor.config.json - Set
clientIdincapacitor.config.json - Set
server_client_idinstrings.xml
<resources>
<string name="server_client_id">Your Web Client Key</string>
</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()
}
});
}
Configure
| 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<br>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 <br>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
/// <reference types="'@codetrix-studio/capacitor-google-auth'" />
const config: CapacitorConfig = {
plugins: {
GoogleAuth: {
scopes: ['profile', 'email'],
serverClientId: 'xxxxxx-xxxxxxxxxxxxxxxxxx.apps.googleusercontent.com',
forceCodeForRefreshToken: true,
},
},
};
export default config;
Note: scopes can be configured under <code><a href="#initialize">initialize</a></code> function.
API
<docgen-index> </docgen-index> <docgen-api> <!--Update the source file JSDoc comments and rerun docgen to update the docs below-->initialize(...)
initialize(options?: InitOptions) => void
Initializes the GoogleAuthPlugin, loading the gapi library and setting up the plugin.
| Param | Type | Description |
| ------------- | --------------------------------------------------- | ---------------------------------- |
| options | <code><a href="#initoptions">InitOptions</a></code> | - Optional initialization options. |
Since: 3.1.0
signIn()
signIn() => Promise<User>
Initiates the sign-in process and returns a Promise that resolves with the user information.
Returns: <code>Promise<<a href="#user">User</a>></code>
refresh()
refresh() => Promise<Authentication>
Refreshes the authentication token and returns a Promise that resolves with the updated authentication details.
Returns: <code>Promise<<a href="#authentication">Authentication</a>></code>
signOut()
signOut() => Promise<any>
Signs out the user and returns a Promise.
Returns: <code>Promise<any></code>
Interfaces
InitOptions
| Prop | Type | Description
Related Skills
node-connect
349.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.5kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
349.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
349.2kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
