安装SDK工具包
更新时间:2019-06-18
版本检测
$ npm -v
// 查看npm是否正确安装$ node -v
// 检查node版本
支持的Node.js版本
- 4.x
- 5.x
安装SDK工具包
JavaScript包已经上传npm管理器,直接使用npm安装SDK的开发包。
npm install @baiducloud/sdk
然后在程序中使用:
import {TsdbDataClient} from '@baiducloud/sdk';
// 需要使用babel转义为 require关键字
// 或者使用 var TsdbDataClient = require('@baiducloud/sdk').TsdbDataClient;
const config = {
endpoint: <Endpoint>, // 用户的时序数据库域名,形式如 http://{databaseName}.tsdb.iot.gz.baidubce.com
credentials: {
ak: <AccessKeyID>, //您的AccessKey
sk: <SecretAccessKey> //您的SecretAccessKey
}
};
let client = new TsdbDataClient(config);
client.getMetrics() // 调用所需要的的接口
.then(response => console.log(response)) // 成功
.catch(error => console.error(error)); // 失败