react-native-community/react-native-google-signin

Name: react-native-google-signin

Owner: React Native Community

Description: Google Signin for your react native applications

Created: 2015-08-13 06:13:57.0

Updated: 2018-05-23 17:36:28.0

Pushed: 2018-05-24 12:20:37.0

Homepage: null

Size: 20448

Language: Objective-C

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

react-native-google-signin

xcode config

Features
Installation
install react-native-google-signin --save
t-native link react-native-google-signin
Note

If you use React Native < v0.40 stick with v0.8.1 (npm install react-native-google-signin@0.8 --save).

If you use React Native < v0.47 stick with v0.10.0 (npm install react-native-google-signin@0.10 --save).

Project setup and initialization

See Android guide and iOS guide

Public API
1. GoogleSigninButton

signin button

rt {GoogleSignin, GoogleSigninButton} from 'react-native-google-signin';

er() {

oogleSigninButton
style={{width: 48, height: 48}}
size={GoogleSigninButton.Size.Icon}
color={GoogleSigninButton.Color.Dark}
onPress={this._signIn.bind(this)}/>

Possible value for `size` are:

Possible value for `color` are:

2. GoogleSignin
rt {GoogleSignin, GoogleSigninButton} from 'react-native-google-signin';
- hasPlayServices

Check if device has google play services installed. Always return true on iOS.

leSignin.hasPlayServices({ autoResolve: true }).then(() => {
// play services are available. can now configure library

ch((err) => {
nsole.log("Play services error", err.code, err.message);

when `autoResolve` the library will prompt the user to take action to solve the issue.

For example if the play services are not installed it will prompt: prompt install

- configure

It is mandatory to call this method before login.

Example for default configuration. you get user email and basic profile info.

rt {GoogleSignin, GoogleSigninButton} from 'react-native-google-signin';

leSignin.configure({
sClientId: <FROM DEVELOPER CONSOLE>, // only for iOS

n(() => {
 you can now call currentUserAsync()

Example to access Google Drive both from the mobile application and from the backend server

leSignin.configure({
opes: ["https://www.googleapis.com/auth/drive.readonly"], // what API you want to access on behalf of the user, default is email and profile
sClientId: <FROM DEVELOPER CONSOLE>, // only for iOS
bClientId: <FROM DEVELOPER CONSOLE>, // client ID of type WEB for your server (needed to verify user ID and offline access)
flineAccess: true // if you want to access Google API on behalf of the user FROM YOUR SERVER
stedDomain: '' // specifies a hosted domain restriction
rceConsentPrompt: true // [Android] if you want to show the authorization prompt at each login
countName: '' // [Android] specifies an account name on the device that should be used

n(() => {
 you can now call currentUserAsync()

iOS Note: your app ClientID (`iosClientId`) is always required

- currentUserAsync

Typically called on the `componentDidMount` of your main component. This method give you the current user if already login or null if not yet signin.

leSignin.currentUserAsync().then((user) => {
  console.log('USER', user);
  this.setState({user: user});
}).done();
- currentUser

simple getter to access user once signed in.

t user = GoogleSignin.currentUser();
ser is null if not signed in
- signIn

Prompt the modal to let the user signin into your application

leSignin.signIn()
n((user) => {
nsole.log(user);
is.setState({user: user});

ch((err) => {
nsole.log('WRONG SIGNIN', err);

e();
- getAccessToken (Android Only)

Obtain the user access token.

leSignin.getAccessToken()
n((token) => {
nsole.log(token);

ch((err) => {
nsole.log(err);

e();

iOS Note: an error with code `-5` is returned if the user cancels the signin process

- signOut

remove user session from the device

leSignin.signOut()
n(() => {
nsole.log('out');

ch((err) => {


iOS Note: the signOut method does not return any event. you success callback will always be called.

- revokeAccess

remove your application from the user authorized applications

leSignin.revokeAccess()
n(() => {
nsole.log('deleted');

ch((err) => {


3. User

This is the typical information you obtain once the user sign in:


id: <user id. do not use on the backend>
name: <user name>
givenName: <user given name> (Android only)
familyName: <user family name> (Android only)
email: <user email>
photo: <user picture profile>
idToken: <token to authenticate the user on the backend>
serverAuthCode: <one-time token to access Google API from the backend on behalf of the user>
scopes: <list of authorized scopes>
accessToken: <needed to access google API from the application>

Android Note: To obtain the user accessToken call getAccessToken

idToken Note: idToken is not null only if you specify a valid `webClientId. ``webClientId``` corresponds to your server clientID on the developers console. It HAS TO BE of type WEB

Read iOS documentation and Android documentation for more information

serverAuthCode Note: serverAuthCode is not null only if you specify a valid `webClientIdand set ``offlineAccess``` to true. once you get the auth code, you can send it to your backend server and exchange the code for an access token. Only with this freshly acquired token can you access user data.

Read iOS documentation and Android documentation for more information

Additional scopes

The default requested scopes are `emailand ``profile```.

If you want to manage other data from your application (for example access user agenda or upload a file to drive) you need to request additional permissions. This can be accomplished by adding the necessary scopes when configuring the GoogleSignin instance.

Please visit https://developers.google.com/oauthplayground/ for a list of available scopes.

Licence

(MIT)


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.