gioneco-openapi-sdk
v1.0.2
Published
智元汇开发平台sdk
Downloads
2
Readme
智元汇开放接口 SDK
Instatll
npm install gioneco-openapi-sdk
Usage
const { GionecoClient } = require("../dist/index");
const appId = "";
const secret = "";
const aesKey = ""
const gionecoClient = new GionecoClient(appId, secret, aesKey);
(async () => {
const result = await gionecoClient.request("realname.verification", {
name: "test",
cardNo: "test",
imageData: "test"
})
console.log(result);
})();