GeWe:重塑微信生态自动化沟通的开源框架
GeWe 是一款深度整合微信生态的开源自动化机器人框架。它融合微信 API 与 RPA 技术,为企业用户提供强大的自动化沟通解决方案。
敏捷开发,降本增效: 灵活定制沟通流程,显著降低运营成本,加速业务响应。
多语言兼容,平滑接入: 原生支持 Java, Go, Python 等主流语言,无缝对接团队现有技术栈,实现快速零门槛部署。
开放集成,释放潜能: 轻松融入企业现有系统与技术生态,赋能开发团队,提升整体效能。
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* 群ID
*/
chatroomId: string;
/**
* 群名称
*/
chatroomName: string;
[property: string]: any;
}
示例
{
"appId": "{{appid}}",
"chatroomName": "GeWe test",
"chatroomId": "34757816141@chatroom"
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/group/modifyChatroomName' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"chatroomName": "GeWe test",
"chatroomId": "34757816141@chatroom"
}'
返回响应
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}