angular-google-plus icon indicating copy to clipboard operation
angular-google-plus copied to clipboard

Angular module which handles the login with the Google+ API

Results 15 angular-google-plus issues
Sort by recently updated
recently updated
newest added

We found that incorporating this module significantly slowed down our Angular 1.5 karma-jasmine tests. Since the run block of angular modules are automatically executed for every test we found that...

Watch here https://github.com/lischinskiy/angular-google-plus-improvments

Currently I only changed your checkAuth function to the following (added $q): ``` NgGooglePlus.prototype.checkAuth = function() { deferred = $q.defer(); gapi.auth.authorize({ client_id: options.clientId, scope: options.scopes, immediate: true }, this.handleAuthResult); return...

I want to use Google plus login in my angular 2 app.. So anyone can help me out please 😄

In my application, there are some optional scopes that are not requested when a user signs up. I ask for them later on when the user decides to use the...

Hi, I am trying to use it in my application using browserify, but i am getting following error: Error: [$injector:modulerr] Failed to instantiate module googleplus due to: Error: [$injector:nomod] Module...

According to the documentation ([here](https://developers.google.com/+/web/api/rest/latest/people)), how i can find the following informations : **placesLived** and **birthday** ? Because when I set the scope : https://www.googleapis.com/auth/plus.me `GooglePlusProvider.setScopes('profile email https://www.googleapis.com/auth/plus.me');` The response...

GooglePlus.logout() seems not to have significant effect as next time I execute .login, no username/password is asked. Repro: 1. login. dialog asks for username/password 2. logout. 3. login: client logs...

not able to fetch mail id of the longeing user please get me some function which will return data with mail id, right now ``` js GooglePlus.getUser().then(function (user) { debugger;...