由于自身在机器人方面滚爬多年,现在收藏几个宝藏机器人
推荐一下自己常用的机器人:
适合有技术开发的公司,可以自主开发所需要的功能!十分齐全
测试问文档:开发前必读 - GeWe开放平台
有需要的兄弟可以看一下,自己开发用过了真的很好用,成熟的一套接口,可以根据自己的需求创造开发
简要概述:朋友圈点赞
简要描述:
- 朋友圈点赞
请求参数
Header 参数
export interface ApifoxModel {
"X-GEWE-TOKEN": string;
[property: string]: any;
}
Body 参数application/json
export interface ApifoxModel {
/**
* 设备ID
*/
appId: string;
/**
* 1点赞 2取消点赞
*/
operType: number;
/**
* 朋友圈ID
*/
snsId: number;
/**
* 点赞的好友wxid
*/
wxid: string;
[property: string]: any;
}
示例
{
"appId": "",
"snsId": 14287710809635828232,
"operType": 2,
"wxid": "wxid_g66c3f6y1eg922"
}
示例代码
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/sns/likeSns' \
--header 'X-GEWE-TOKEN: ' \
--header 'User-Agent: Apifox/1.0.0 (https://apifox.com)' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"snsId": 14287710809635828232,
"operType": 2,
"wxid": "wxid_g66c3f6y1eg922"
}'
返回响应
成功(200)
HTTP 状态码: 200 内容格式: JSON
数据结构
export interface ApifoxModel {
msg: string;
ret: number;
[property: string]: any;
}
示例
{
"ret": 200,
"msg": "操作成功"
}