1.0.5 • Published 3 years ago
hongyansms v1.0.5
宏衍短信 hongyansms
客户接口说明
- 短信接口增加 JSON 格式,增加传递参数 rt=json,表示按 json 格式返回数据。
目录
1. 发送短信接口
2. 余额及已发送量查询接口
3. 非法关键词查询
4. 状态报告接口
5. 上行接口
官方 HTTP 接口
{
"userid": "123456",
"timestamp": "1569227749245",
"sign": "1569227749245",
"mobile": "13888888888,13988858555",
"content": "【宏衍】这是测试短信",
"sendTime": "2010-10-24 09:08:10",
"action": "send",
"extno": "12345",
}
SDK
使用说明
// 1.引入模块
const HYSms = require("hongyansms");
const hysms = new HYSms({
userid,
username,
userpwd,
});
// 1.1 发送短信
hysms
.sendMessage({
mobile,
message,
senTime,
})
.then((res) => {
console.log(res.text);
});
// 1.2 余额及已发送量查询
hysms.sendMessage({}).then((res) => {
console.log(res.text);
});
// 1.3 非法关键词查询
hysms
.sendMessage({
message,
})
.then((res) => {
console.log(res.text);
});
// 1.4 状态报告接口
hysms.sendMessage({}).then((res) => {
console.log(res.text);
});
// 1.5 用户上行数据获取
hysms.sendMessage({}).then((res) => {
console.log(res.text);
});