ng-google-signin

0.1.0 • Public • Published

ng-google-plus

Build Status Dependency Status Dev Dependency Status

An angular module that handles login with the Google Signin API

Demo

Try this demo.

Install

Install the angular module with bower.

$ bower install ng-google-signin

Install the angular module with npm.

$ npm install ng-google-signin

Usage

var app = angular.module('app', ['google-signin']);
 
app.config(['GoogleSigninProvider', function(GoogleSigninProvider) {
     GoogleSigninProvider.init({
        client_id: 'YOUR_CLIENT_ID',
     });
}]);
 
app.controller('AuthCtrl', ['$scope', 'GoogleSignin', function ($scope, 
GoogleSignin) {
    $scope.login = function () {
        GoogleSignin.signIn().then(function (user) {
            console.log(user);
        }, function (err) {
            console.log(err);
        });
    };
}]);

Credits

Package Sidebar

Install

npm i ng-google-signin

Weekly Downloads

4

Version

0.1.0

License

MIT

Last publish

Collaborators

  • rtucker88