微信機(jī)器人開發(fā)GeWe框架(個(gè)人號(hào)自動(dòng)化)
主要面向個(gè)人微信號(hào)的自動(dòng)化管理及機(jī)器人開發(fā),基于微信實(shí)現(xiàn),適用于社群運(yùn)營(yíng)、智能客服等場(chǎng)景。
消息管理:支持文本、圖片、語音、視頻等31種消息類型的收發(fā)與處理,可定制自動(dòng)回復(fù)規(guī)則(如關(guān)鍵詞觸發(fā))
好友與群控:自動(dòng)通過好友請(qǐng)求、群成員管理(踢人、邀請(qǐng))、群消息監(jiān)控及預(yù)警
擴(kuò)展功能:定時(shí)任務(wù)(如消息推送)、朋友圈互動(dòng)(發(fā)布、點(diǎn)贊)、數(shù)據(jù)統(tǒng)計(jì)與RPA流程集成
請(qǐng)求參數(shù)
Header 參數(shù)
export interface ApifoxModel {
? ? "X-GEWE-TOKEN": string;
? ? [property: string]: any;
}
Body 參數(shù)application/json
export interface ApifoxModel {
? ? /**
? ? * 設(shè)備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"
}'
返回響應(yīng)
export interface ApifoxModel {
? ? msg: string;
? ? ret: number;
? ? [property: string]: any;
}
示例
{
? ? "ret": 200,
? ? "msg": "操作成功"
}