New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ingress-api

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ingress-api

ingress api wrappers

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

ingress-api

disclaimer

this code is for educational purposes only. using it on production services will probably be against the service's ToS and get you banned.

wtf?

ingress-api aims to provide a wrapper for the ingress "API".

usage

var Api = require('ingress-api');
var api = new Api();

api.login('username', 'password', function(err, handshake) {
    if (err) {
        console.log('error logging in:', err);
        process.exit(1);
    }

    console.log('logged in. result:', handshake);

    api.api('playerUndecorated/getInventory', {}, function(err, data) {
        if (err) {
            console.log('error getting inventory:', err);
            return;
        }
        console.log(data);
    });
});

FAQs

Package last updated on 24 Aug 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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