最近公司需要找一家个微的API助手接口服务,具体需求是可以自己批量添加好友、批量打标签等进行好友管理,社群管理需要自动聊天,自动回复,发朋友圈,转发语音,以及定时群发等,还可以提取聊天内容,进行数据汇总,收藏快捷回复各种功能!
找了很多天 是找到了现在用的一款助手,用起来还是很方便的
测试地址:介绍 · E云管家 微信个人号开发 微信机器人开发
简要描述:
- 发送链接
请求URL:
http://域名地址/sendUrl
请求方式:
- POST
请求头Headers:
- Content-Type:application/json
- Authorization:login接口返回
参数:
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| wId | 是 | string | 登录实例标识 |
| wcId | 是 | string | 接收人微信id/群id |
| title | 是 | string | 标题 |
| url | 是 | string | 链接 |
| description | 是 | string | 描述 |
| thumbUrl | 是 | string | 图标url |
返回数据:
| 参数名 | 类型 | 说明 |
|---|---|---|
| code | string | 1000成功,1001失败 |
| msg | string | 反馈信息 |
| data | ||
| data.type | int | 类型 |
| data.msgId | long | 消息msgId |
| data.newMsgId | long | 消息newMsgId |
| data.createTime | long | 消息发送时间戳 |
| data.wcId | string | 消息接收方id |
请求参数示例
{
"wId": "0000016f-63d2-ea61-000e-a659a75ea445",
"wcId": "jack_623555049",
"title": "这是测试链接",
"url": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1577945612638&di=81a0281095a337037abf85f29929b55f&imgtype=0&src=http%3A%2F%2Fimage5.92bizhi.com%2Funclassified_unclassified--122_26-1600x1200.jpg",
"description": "",
"thumbUrl": "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1577945612638&di=81a0281095a337037abf85f29929b55f&imgtype=0&src=http%3A%2F%2Fimage5.92bizhi.com%2Funclassified_unclassified--122_26-1600x1200.jpg"
}
成功返回示例
{
"code": "1000",
"message": "发送链接成功",
"data": {
"type": null,
"msgId": 697760503,
"newMsgId": 181228940242588250,
"createTime": 1641457185,
"wcId": "wxid_amdhbnjfj3d"
}
}
错误返回示例
{
"message": "失败",
"code": "1001",
"data": null
}

485

被折叠的 条评论
为什么被折叠?



