微信作为中国最流行的社交软件之一,其机器人功能也备受关注。本文将教你如何搭建一个微信机器人,并通过接入gewe实现智能回复与聊天功能。
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* 是否允许
*/
enabled: boolean;
[property: string]: any;
}
示例
{
"appId": "",
"enabled": true
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/sns/strangerVisibilityEnabled' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"enabled": true
}'
返回响应
成功(200)
HTTP 状态码: 200 内容格式: JSONapplication/json
数据结构
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}