1.0.0 • Published 7 years ago
id5 v1.0.0
id5
国政通 NodeJS SDK
Installation
npm i id5 -SUsage
const ID5 = require('id5');
const id5 = new ID5({
username: 'runrioter',
password: 'runrioterpsw',
wsdlUrl: 'https://some.domain/someServices?wsdl',
key: '87651234',
iv: '87651234',
});
const matched = await id5.validateIDInfo('马冬梅', '21062419820628XXXX');
if (matched) {
// ...
} else {
// ...
}Debug
Set DEBUG env variable to run your program.
DEBUG=id5 npm run \<some-script>