Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
ispapi-apiconnector
Advanced tools
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.
$ npm install ispapi-apiconnector
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);
//apiclient.request(command, socketconfig, callbackSuccess, callbackError, "hash");
//apiclient.request(command, socketconfig, callbackSuccess, callbackError, "list");
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.
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.
var apiconnector = require('ispapi-connector')
, apiclient = new apiconnector.Client()
, socketparameters, cb;
//--- socket parameters in JSON format
socketparameters = {
entity: "1234",//OT&E system, use "54cd" for LIVE system
login: "test.user",//your user id, here: the OT&E demo user
pw: "test.passw0rd",//your user password
remoteaddr: "1.2.3.4:80"//optional: provide your remote ip address
//remoteaddr: provide it, if you have an ip address filter activated in your account for security reasons
};
//--- login callback method
cb = function(r, socketcfg){
if (r.CODE!=="200")//login failed
return;
//login succeeded
//r.PROPERTY.SESSION[0] contains the api session id which is required for further api communication
//reuse socketcfg for every further api request or the api logout at end (it contains already the above mentioned session id)
};
//--- perform a login to the provided url
apiclient.login(socketparameters, cb);
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;
//optional callback method (success case)
cb = function(r){
//api communication succeeded
//r -> api response in hash/list format, read above
console.dir(r);
};
//optional callback method (error handler)
cberr = function(r){
//this is the callback method that is called in any error case (network issue etc.)
//r -> api response in hash/list format, read above
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.
var apiconnector = require('ispapi-connector')
, apiclient = new apiconnector.Client()
, cb;
//optional callback method
cb = function(r){
//r -> api response in hash/list format, read above
//r.CODE === "200": the api session is now destroyed
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.
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;
//--- socket parameters in JSON format
socketparameters = {
entity: "1234", //OT&E system, use "54cd" for LIVE system
login: "test.user", //your user id, here: the OT&E demo user
pw: "test.passw0rd", //your user password
//user: "...",//can be used to work with a subuser account - optional
remoteaddr: "1.2.3.4:80" //optional: provide your remote ip address (use for ip filter)
};
//--- perform a login to the provided url
console.log("login ...");
apiclient.login(socketparameters, function(r, socketcfg) {
if (r.CODE !== "200") { //login failed
console.log(" FAILED -> " + r.CODE + " " + r.DESCRIPTION);
return;
}
console.log(" SUCCESS");
//define callback method which we use for success and error case
//you can also define a separate callback method for error case instead
var cb = function(r) {
console.log("---- API response ----");
console.dir(r);
//... further commands ...
//--- finally do logout
console.log("logout ...");
apiclient.logout(socketcfg, function(r) {
if (r.CODE !== "200") { //logout failed
console.log(" FAILED -> " + r.CODE + " " + r.DESCRIPTION);
return;
}
console.log(" SUCCESS");
});
};
console.log("requesting user status ...");
apiclient.request({
COMMAND: "StatusUser"
}, socketcfg, cb, cb);
});
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);
Nothing added yet.
MIT
FAQs
Node.js SDK for the insanely fast HEXONET API
The npm package ispapi-apiconnector receives a total of 19 weekly downloads. As such, ispapi-apiconnector popularity was classified as not popular.
We found that ispapi-apiconnector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.