Not sure why this is happening, but this would be awful for our users to experience. Any tips on getting it to work properly the first time they click auth?
Google Auth
$scope.authorize = function () {
var promise = GAPI.init();
promise.then(function(data){
console.log("data", data);
var googleUser = Plus.searchPeople('me');
console.log("googleUser", googleUser);
});
};