Socket
Socket
Sign inDemoInstall

ip-geolocation-api-javascript-sdk

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ip-geolocation-api-javascript-sdk

## Installation ```cli npm i ip-geolocation-api-javascript-sdk ```


Version published
Weekly downloads
433
increased by12.47%
Maintainers
1
Weekly downloads
 
Created
Source

IPGeolocation API Javascript SDK

Installation

    npm i ip-geolocation-api-javascript-sdk

Usage

var IPGeolocationAPI = require('ip-geolocation-api-javascript-sdk');
var GeolocationParams = require('ip-geolocation-api-javascript-sdk/GeolocationParams.js');
var TimezoneParams = require('ip-geolocation-api-javascript-sdk/TimezoneParams.js');

Setup API

var api = new IPGeolocationAPI("YOUR_API_KEY");

Geolocation Lookup

// Query geolocation for IP address (1.1.1.1) and fields (geo, time_zone and currency)
var geolocationParams = new GeolocationParams();
geolocationParams.setIp("1.1.1.1"); 
geolocationParams.setFields("geo,time_zone,currency");

console.log(api.getGeolocation(geolocationParams));

// Query geolocation for IP address (1.1.1.1) and all fields
GeolocationParams geoParams = new GeolocationParams();
geoParams.SetIp("1.1.1.1");

api.getGeolocation(geolocationParams, geoResponse);
function geoResponse(json) {
    console.log(json);
}

// Query geolocation for the calling machine's IP address for all fields
api.getGeolocation(geoResponse);
function geoResponse(json) {
    console.log(json);
}

Bulk Geolocations Lookup

// Query geolocations for multiple IP addresses and all fields
var geolocationParams = new GeolocationParams();
geolocationParams.setIps(['1.1.1.1','2.2.22.2','34.1.1.3']);

api.getGeolocation(geolocationParams);
function geoResponse(json) {
    console.log(json);
}

Time Zone API

// Query time zone information by time zone ID
var tzParams = new TimezoneParams();

tzParams.setIp("1.1.1.1");
obj.getTimezone(geoResponse);
function geoResponse(json) {
    console.log(json);
}

Keywords

FAQs

Package last updated on 22 Oct 2018

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