API _ GoogleSignin _ configure() _ Configuration _ signIn() _ signInSilently() _ isSignedIn() _ playServicesAvailable() _ signOut() _ disconnect() _ getTokens() _ getCurrentUser() _ User * GoogleSignInButton (#playservicesavailable)
npm install @nativescript/google-signin
To access Google Sign-In, you need to register your application. You don't need to include the google-services.json
file in your app unless you are using Google services that require it.
Enable the OAuth APIs that you want, using the Google Cloud Platform API manager. Make sure you've filled out all the required fields in the console for OAuth consent screen. Otherwise, you may encounter APIException errors.
This plugin requires iOS 9.0+
.
First register your application.
Add the GoogleService-Info.plist.
obtained from step 2.
to App_Resources/iOS/
.
Open Xcode
Runner
directory and select Add Files to Runner
.GoogleService-Info.plist
from the file manager.Runner
target from the dialog that appears.Add the CFBundleURLTypes
attributes below to the App_Resources/iOS/Info.plist
file.
<!-- Google Sign-in Section -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<!-- TODO Replace this value: -->
<!-- Copied from GoogleService-Info.plist key REVERSED_CLIENT_ID -->
<string>com.googleusercontent.apps.292142294722-23nmrq9mn8rhpqipjc1bt4qecga3qgsf</string>
</array>
</dict>
</array>
<!-- End of the Google Sign-in Section -->
Note
that according to https://developer.apple.com/sign-in-with-apple/get-started, starting June 30, 2020
, the apps that use login services must also offer a Sign in with Apple
option when submitting to the Apple App Store. For that, consider using the@nativescript/apple-sign-in plugin.
To sign in the user, call the signIn() or the signInSilently() method. However, ensure to call configure()
before calling any of those methods.
import { GoogleSignin } from '@nativescript/google-signin'
try {
await GoogleSignin.configure()
const user = await GoogleSignin.signIn()
} catch (e) {}
<Page xmlns:ui="@nativescript/google-signin">
<ui:GoogleSigninButton tap="handleSignIn" colorScheme='auto' colorStyle='standard' />
</Page>
import { GoogleSignin } from '@nativescript/google-signin'
export function handleSignIn(args) {
try {
await GoogleSignin.configure()
const user = await GoogleSignin.signIn()
} catch (e) {}
}
Register the button in the module.ts
file:
import { registerElement } from '@nativescript/angular'
registerElement(
'GoogleSignInButton',
() => require('@nativescript/google-signin').GoogleSignInButton
)
And then it can be called from your html
file choosing the desired option for colorScheme
and colorStyle
as:
<GoogleSignInButton colorScheme='auto' colorStyle='standard' (tap)="yourGoogleSigninFunction()"></GoogleSignInButton>
To register the button, add the following code to the main.ts
file.
registerElement(
'GoogleSignInButton',
() => require('@nativescript/google-signin').GoogleSignInButton
)
Then use it in a .vue
file as follows:
<GoogleSignInButton colorScheme='auto' colorStyle='standard' @tap="yourGoogleSigninFunction"></GoogleSignInButton>
GoogleSignInButton is a View instance so you can use the View class styling properties. Additionally, the plugin offers the colorScheme
and colorStyle
properties.
The GoogleSignin class has the following methods.
await GoogleSignIn.configure(configuration)
Specifies the properties of the sign-in request, such as scopes,accountName, etc.
Call this method before calling the signIn()
or signInSilently()
method. Call it only once, after your app starts.
The configuration
parameter is an optional Configuration object.
The Configuration object has the following properties. All properties are optional.
Property | Type |
---|---|
scopes | string[] |
signInOptions | 'default' | 'games' |
clientId | string |
serverClientId | string |
accountName | string |
hostedDomain | string |
user: User = await GoogleSignin.signIn()
Prompts a modal to let the user sign in into the application.
user: User = await GoogleSignin.signInSilently()
isUserSignedIn: boolean = GoogleSignin.isSignedIn()
Checks whether the user is currently signed in.
isPlayServicesAvailable: boolean = await GoogleSignin.playServicesAvailable()
Checks if device has Google Play Services installed. Always resolves to true
on iOS.
Presence of up-to-date Google Play Services is required to show the sign in modal.
GoogleSignin.signOut()
Signs out the current user.
await GoogleSignin.disconnect()
Disconnects the current user.
tokens: { idToken: string; accessToken: string;} = await GoogleSignin.getTokens()
Resolves with an object containing { idToken: string, accessToken: string, } or rejects with an error. Note that using accessToken
for identity assertion on your backend server is discouraged.
user : User | null = GoogleSignin.getCurrentUser()
This method resolves with null or a User object.
The user object has the following members:
Property | Type | Description |
---|---|---|
id | string | readonly |
displayName | string | readonly |
email | string | readonly |
givenName | string | readonly |
familyName | string | readonly |
idToken | string | readonly |
accessToken | string | readonly |
grantedScopes | string[] | readonly |
photoUrl | string | readonly |
serverAuthCode | string | readonly |
requestScopes(scopes: string[]) | Promise<IUser> | See User for the properties of IUser |
native | com.google.android.gms.auth.api.signin.GoogleSignInAccount | GIDGoogleUser | Platform-specific instance. |
Property | Type |
---|---|
colorScheme | "dark" | "light" | "auto" |
colorStyle | "standard" | "wide" | "icon" |
Apache License Version 2.0