ng1-google-plus

0.1.4 • Public • Published

angular-google-plus

Build Status npm version Bower version

A angular module which handles the login with the Google+ API

Demo

Try this demo. Remind that there is no API Key and Client ID inserted

Install

Install the angular module with bower or npm.

$ bower install angular-google-plus
$ npm install angular-google-plus

Usage

var app = angular.module('app', ['googleplus']);
 
app.config(['GooglePlusProvider', function(GooglePlusProvider) {
     GooglePlusProvider.init({
        clientId: 'YOUR_CLIENT_ID',
        apiKey: 'YOUR_API_KEY'
     });
}]);
 
app.controller('AuthCtrl', ['$scope', 'GooglePlus', function ($scope, GooglePlus) {
    $scope.login = function () {
        GooglePlus.login().then(function (authResult) {
            console.log(authResult);
 
            GooglePlus.getUser().then(function (user) {
                console.log(user);
            });
        }, function (err) {
            console.log(err);
        });
    };
}]);

Credits

/ng1-google-plus/

    Package Sidebar

    Install

    npm i ng1-google-plus

    Weekly Downloads

    0

    Version

    0.1.4

    License

    MIT

    Last publish

    Collaborators

    • ptitmouton