微信机器人开发GeWe框架(个人号自动化)
主要面向个人微信号的自动化管理及机器人开发,基于微信实现,适用于社群运营、智能客服等场景。
消息管理:支持文本、图片、语音、视频等31种消息类型的收发与处理,可定制自动回复规则(如关键词触发)
好友与群控:自动通过好友请求、群成员管理(踢人、邀请)、群消息监控及预警
扩展功能:定时任务(如消息推送)、朋友圈互动(发布、点赞)、数据统计与RPA流程集成
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* 群ID
*/
chatroomId: string;
/**
* 群备注
*/
chatroomRemark: string;
[property: string]: any;
}
示例
{
"appId": "{{appid}}",
"chatroomRemark": "GeWe test private",
"chatroomId": "34757816141@chatroom"
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/group/modifyChatroomRemark' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"chatroomRemark": "GeWe test private",
"chatroomId": "34757816141@chatroom"
}'
返回响应
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}