常見開發(fā)功能:
好友管理:添加好友蚣旱、刪除好友、修改備注戴陡、創(chuàng)建標簽塞绿、獲取好友列表、搜索好友信息
消息管理:發(fā)文本消息恤批、圖片消息异吻、名片消息、動圖表情、小程序诀浪、發(fā)文件棋返、發(fā)送視頻、發(fā)送URL鏈接
群管理:自動創(chuàng)群雷猪、修改群名稱睛竣、邀請新成員、踢群成員求摇、獲取群列表射沟、發(fā)送邀請鏈接、獲取群聊
朋友圈:發(fā)送朋友圈月帝、朋友圈點贊躏惋、獲取朋友圈列表、轉發(fā)朋友圈嚷辅、同步朋友圈
基于API您可以創(chuàng)造更多有趣的功能....
請求參數(shù)
Header 參數(shù)
export interface ApifoxModel {
? ? "X-GEWE-TOKEN": string;
? ? [property: string]: any;
}
Body 參數(shù)application/json
export interface ApifoxModel {
? ? /**
? ? * 設備ID
? ? */
? ? appId: string;
? ? /**
? ? * 備注的備注
? ? */
? ? remark: string;
? ? /**
? ? * 好友的wxid
? ? */
? ? wxid: string;
? ? [property: string]: any;
}
示例
{
? ? "appId": "",
? ? "wxid": "wxid_phyyedw9xap22",
? ? "remark": "備注"
}
示例代碼
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/contacts/setFriendRemark' \
--header 'X-GEWE-TOKEN: ' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
? ? "appId": "",
? ? "wxid": "wxid_phyyedw9xap22",
? ? "remark": "備注"
}'
返回響應
成功(200)
HTTP 狀態(tài)碼: 200 內容格式: JSONapplication/json
數(shù)據(jù)結構
export interface ApifoxModel {
? ? msg: string;
? ? ret: number;
? ? [property: string]: any;
}
示例
{
? ? "ret": 200,
? ? "msg": "設置好友權限成功"
}