ispapi-apiconnector
This module is a connector library for the insanely fast 1API backend API.
For further informations visit our homepage http://1api.net and do not hesitate to contact us.
Installation
$ npm install ispapi-apiconnector
Usage
API response format
If you got the API communication working, you will notice that we provide two response formats via this library.
a) hash format
b) list format
The response format can be switched by providing a 5th parameter to the request method e.g.:
apiclient.request(command, socketcfg, callbackSuccess, callbackError, type);
The default value for type is "hash". Thus not providing this parameter automatically returns the hash format.
The list format makes sense, if you're working with table libraries based on our list commands and need the hash format parsed into a list format.
NOTE: You have to login first. The login callback provides an updated socketcfg variable which has to be reused in the request and logout method.
API response codes
The API response (a JSON object) provides always two keys: CODE and DESCRIPTION.
CODE represents a return code which indicates the following cases:
"200" -> The command has been processed successfully by the API
"4xx" -> A temporary API error occured, retry later
"5xx" -> An API error occured
In case of a (temporary) error the DESCRIPTION may provide more details on the reason.
The hash format provides a PROPERTY key that returns potential data.
The list format provides a LIST key that returns potential data.
API login procedure
var apiconnector = require('ispapi-connector')
, apiclient = new apiconnector.Client()
, socketparameters, cb;
socketparameters = {
entity: "1234",
login: "test.user",
pw: "test.passw0rd",
remoteaddr: "1.2.3.4:80"
};
cb = function(r, socketcfg){
if (r.CODE!=="200")
return;
};
apiclient.login(socketparameters, cb);
API command request
After login, you should reuse the above 'socketcfg' parameter in further requests which is the simplest and best way.
var apiconnector = require('ispapi-apiconnector')
, apiclient = new apiconnector.Client()
, cb, cberr;
cb = function(r){
console.dir(r);
};
cberr = function(r){
console.dir(r);
};
apiclient.request({ COMMAND : "StatusUser" }, socketcfg, cb, cberr);
NOTE: You have to login first. The login callback provides an updated socketcfg variable which has to be reused in the request and logout method.
API logout
var apiconnector = require('ispapi-connector')
, apiclient = new apiconnector.Client()
, cb;
cb = function(r){
console.dir(r);
};
api.logout(socketcfg, cb);
NOTE: You have to login first. The login callback provides an updated socketcfg variable which has to be reused in the request and logout method.
Working example
This example is thought for anyone who builds up his own frontend including user login and logout functionality.
See how login and logout works and how the request method depends on the login mechanism!
The logout can be done at any time separetely triggered. After logout no further requests are possible.
Note: you have to first finish your requests before doing logout. Running requests may fail after logout.
'use strict';
var apiconnector = require('ispapi-apiconnector'),
apiclient = new apiconnector.Client(),
socketparameters;
socketparameters = {
entity: "1234",
login: "test.user",
pw: "test.passw0rd",
remoteaddr: "1.2.3.4:80"
};
console.log("login ...");
apiclient.login(socketparameters, function(r, socketcfg) {
if (r.CODE !== "200") {
console.log(" FAILED -> " + r.CODE + " " + r.DESCRIPTION);
return;
}
console.log(" SUCCESS");
var cb = function(r) {
console.log("---- API response ----");
console.dir(r);
console.log("logout ...");
apiclient.logout(socketcfg, function(r) {
if (r.CODE !== "200") {
console.log(" FAILED -> " + r.CODE + " " + r.DESCRIPTION);
return;
}
console.log(" SUCCESS");
});
};
console.log("requesting user status ...");
apiclient.request({
COMMAND: "StatusUser"
}, socketcfg, cb, cb);
});
Working example (without API session)
In the below example no login / logout procedure is required.
This is thought for cases where a user session is not of interest.
But in that case you always have to provide user and password accordingly.
If you want to build your frontend based on this library, we suggest to base it on the above example.
'use strict';
var apiconnector = require('ispapi-apiconnector'),
apiclient = new apiconnector.Client(),
socketparameters = {
params: {
entity: '1234',
remoteaddr: '1.2.3.4:80',
login: 'test.user',
pw: 'test.passw0rd'
}
};
var cb = function(r) {
console.dir(r);
};
apiclient.request({
COMMAND: "StatusAccount"
}, socketparameters, cb, cb);
FAQ
Nothing added yet.
License
MIT