Socket
Socket
Sign inDemoInstall

angular-google-plus

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-google-plus - npm Package Versions

0.1.2

Diff

Changelog

Source

0.1.2

  • Bower: remove minifed version from main value
  • Dependencies: remove connect dependency (Gruntfile)
  • API: Add the getUser method and remove it from login (#1, #4)
Breaking Changes

The API for login has been changed (#4):

Before:

GooglePlus.login().then(function (user) {
    console.log(user);
}, function (err) {
    console.log(err);
});

After:

GooglePlus.login().then(function (authResult) {
    console.log(authResult);

    GooglePlus.getUser().then(function (user) {
        console.log(user);
    });
}, function (err) {
    console.log(err);
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc