world_bank
v1.0.11
Published
This_is_a_sample_API_implementation_using_the_World_Bank_Public_API__httpapi_worldbank_org_httpapi_worldbank_org
Downloads
4
Readme
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
Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- WorldBank.CountriesApi | countriesCodeGet | GET /countries/{code} | Returns the Country information
Documentation for Models
Documentation for Authorization
OauthSecurity
- Type: OAuth
- Flow: password
- Authorization URL:
- Scopes: N/A