1.0.11 • Published 7 years ago

world_bank v1.0.11

Weekly downloads
1
License
Apache-2.0
Repository
-
Last release
7 years ago

world_bank

WorldBank - JavaScript client for world_bank This is a sample API implementation using the World Bank Public API http://api.worldbank.org This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build date: 2017-03-15T15:05:02.334Z
  • Build package: class io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install world_bank --save

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Getting Started

Please follow the installation instruction and execute the following JS code:

var WorldBank = require('world_bank');

var defaultClient = WorldBank.ApiClient.default;

// Configure OAuth2 access token for authorization: OauthSecurity
var OauthSecurity = defaultClient.authentications['OauthSecurity'];
OauthSecurity.accessToken = "YOUR ACCESS TOKEN"

var api = new WorldBank.CountriesApi()

var code = "code_example"; // {String} Country Code


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.countriesCodeGet(code, callback);

Documentation for API Endpoints

All URIs are relative to http://localhost:8280/wb/1.0.0

ClassMethodHTTP requestDescription
WorldBank.CountriesApicountriesCodeGetGET /countries/{code}Returns the Country information

Documentation for Models

Documentation for Authorization

OauthSecurity

  • Type: OAuth
  • Flow: password
  • Authorization URL:
  • Scopes: N/A
1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago