测试小站: 处理网 回收帮 培训网 富贵论坛 老富贵论坛

gewe微信机器人搭建教程

GeWe开放平台是基于 微信开放平台的二次封装API服务,开发者可以使用本服务来处理微信中的各种事件,并可以通过后台调用对应的 API 来驱动微信自动执行任务,如自动收发消息、自动化应答、自动群邀请、群管理等,封装了 RPA技术流程,简化开发者二次开发难度,提供了开发者与微信对接的能力,使用简单,操作快捷,支持多种语言接入。

常见开发功能:
好友管理:添加好友、删除好友、修改备注、创建标签、获取好友列表、搜索好友信息

消息管理:发文本消息、图片消息、名片消息、动图表情、小程序、发文件、发送视频、发送URL链接

群管理:自动创群、修改群名称、邀请新成员、踢群成员、获取群列表、发送邀请链接、获取群聊

朋友圈:发送朋友圈、朋友圈点赞、获取朋友圈列表、转发朋友圈、同步朋友圈
基于API您可以创造更多有趣的功能....

请求参数
Header 参数

export interface ApifoxModel {
    "X-GEWE-TOKEN": string;
    [property: string]: any;
}

  Body 参数application/json

export interface ApifoxModel {
    /**
     * 设备ID
     */
    appId: string;
    /**
     * 标签ID,多个逗号分隔
     */
    labelIds: string;
    /**
     * 修改的好友wxid
     */
    wxIds: string[];
    [property: string]: any;
}

  示例

{
  "appId": "{{appid}}",
  "labelIds": "15",
  "wxIds": [
    "zhangchuan2288"
  ]
}

  示例代码

curl --location --request POST 'https://www.91chuli.com/gewe/v2/api/label/modifyMemberList' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appId": "",
    "labelIds": "15",
    "wxIds": [
        "zhangchuan2288"
    ]
}'

  返回响应

export interface ApifoxModel {
    msg: string;
    ret: number;
    [property: string]: any;
}

  示例

{
  "ret": 200,
  "msg": "操作成功"
}

  

posted @ 2025-05-12 21:00  ludongguoa  阅读(91)  评论(0)    收藏  举报