微信作为中国最流行的社交软件之一,其机器人功能也备受关注。本文将教你如何搭建一个微信机器人,并通过接入gewe实现智能回复与聊天功能。

请求参数

Header 参数

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

Body 参数application/json

export interface ApifoxModel {
    /**
     * 设备ID
     */
    appId: null | string;
    /**
     * 朋友圈ID
     */
    snsId: number | null;
    [property: string]: any;
}

示例

{
    "appId": "",
    "snsId": 14292805691027100187
}

示例代码

curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/sns/delSns' \
--header 'X-GEWE-TOKEN: ' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appId": "",
    "snsId": 14292805691027100187
}'

返回响应

成功(200)

HTTP 状态码: 200 内容格式: JSONapplication/json

数据结构

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

示例

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