在白码低代码开发平台上对接七陌外呼接口,实现选择客户进行外呼,并保存通话记录的功能。
外呼接口实现
官方接口文档:http://developer.7moor.com/v2docs/dialout/
1、对接数据查询
向七陌商务索取到七陌用户中心账号密码,在查询页面查询到三个参数
let accountId = "T0********";//账户id
let apiSecret = "495b60****************5f0555af";//账户secret
let host = "https://openapis.7moor.com";//请求域名
查询页面:http://developer.7moor.com/data-query/
2、接口鉴权信息
- 时间戳
//时间
let date = new Date();
let YY = date.getFullYear();
let MM = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
let DD = (date.getDate() + 1 <=