最近微信群里朋友们聊天,年纪大了需要养生了,每天八杯水~想着是否可以实现一个微信机器人每天定时给群内发消息提醒喝水的功能。
查阅资料发现微信开源了微信个人号接口gewe,可以使用python调用接口。
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* @的好友,多个英文逗号分隔。群主或管理员@全部的人,则填写'notify@all'
*/
ats?: string;
/**
* 消息内容
*/
content: string;
/**
* 好友/群的ID
*/
toWxid: string;
[property: string]: any;
}
示例
{
"appId": "",
"toWxid": "34757816141@chatroom",
"ats": "wxid_phyyedw9xap22",
"content": "@猿猴 我在测试艾特内容"
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/message/postText' \
--header 'X-GEWE-TOKEN: ' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"toWxid": "34757816141@chatroom",
"ats": "wxid_phyyedw9xap22",
"content": "@猿猴 我在测试艾特内容"
}'
返回响应
成功(200)
HTTP 状态码: 200 内容格式: JSONapplication/json
数据结构
export interface ApifoxModel {
data: Data;
msg: string;
ret: number;
[property: string]: any;
}
export interface Data {
/**
* 发送时间
*/
createTime: number;
/**
* 消息ID
*/
msgId: number;
/**
* 消息ID
*/
newMsgId: number;
/**
* 接收人的wxid
*/
toWxid: string;
/**
* 消息类型
*/
type: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功",
"data": {
"toWxid": "34757816141@chatroom",
"createTime": 1703841160,
"msgId": 0,
"newMsgId": 3768973957878705021,
"type": 1
}
}