通过包依赖管理工具下载最新版本。
npm install hifive-openapi-nodejs@4.1.1-1 --save
首先进入 控制台 > HIFIVE授权管理 获取 appId,serverCode。具体API调用示例详见API接口文档。
// 控制台appId ——> appKey, 控制台serverCode ——> secret, 服务器地址 ——> url
import api from 'hifive-openapi'
// 获取初始化
const client = new api.Client({
Host: 'https://hifive-openapi-qa.haifanwu.com',
Version: 'V4.1.1',
AppId: '6jg58jx4aa9t7305dyck4ckvbyhk7duk',
ServerCode: 'wnzwnkevnc74uym5'
})
// 获取Token
client.HFBaseLoginRequest({
ClientId: 'hf2y7jk19a56qetq05',
Params: {
Nickname: 'zealot',
Gender: 0,
Birthday: 1594639058,
Location: '30.779164,103.94547',
Education: 0,
Profession: '8',
IsOrganization: true,
Reserve: { 'language': 'English'},
FavoriteSinger: '周杰伦',
FavoriteGenre: '1'
}
}).then((data) => {
console.log(data)
})