- 开发指南
- 基础API
- 登录模块
- 联系人模块
- 群模块
- 消息模块
- 朋友圈模块
- 标签模块
- 个人模块
- 收藏夹模块
- 视频号模块
- 关注POST
- 评论POST
- 浏览POST
- 发布视频POST
- 用户主页POST
- 关注列表POST
- 消息列表POST
- 评论列表POST
- 获取赞与收藏的视频列表POST
- 搜索视频号POST
- 创建视频号POST
- 同步私信消息POST
- 根据id点赞POST
- 根据id点小红心POST
- 获取我的视频号信息POST
- 修改我的视频号信息POST
- 发送视频号消息POST
- 发送视频号朋友圈POST
- 发私信文本消息POST
- 发私信图片消息POST
- 获取私信人信息POST
- 获取私信SessionIdPOST
- 扫码关注POST
- 扫码浏览POST
- 扫码评论POST
- 扫码点赞POST
- 扫码点小红心POST
- 扫码登录视频号助手POST
- 扫码获取视频详情POST
- 我的视频号二维码POST
- 上传CDN视频POST
- 发布CDN视频POST
- 点赞(废弃)POST
- 小红心(废弃)POST
- 账号管理
- 更多信息
发布视频
POST
/gewe/v2/api/finder/publishFinder
请求参数
Header 参数
X-GEWE-TOKEN
string
必需
示例值:
{{gewe-token}}
Body 参数application/json
appId
string
设备ID
videoUrl
string
视频链接地址
thumbUrl
string
封面链接地址
width
integer
视频宽度
height
integer
视频高度
playLen
integer
可选
topic
array[string]
视频号话题
description
string
视频号描述
myUserName
string
必需
myRoleType
integer
必需
示例
{
"appId": "{{appid}}",
"proxyIp": "",
"videoUrl": "https://scrm-1308498490.cos.ap-shanghai.myqcloud.com/pkg/436fa030-18a45a6e917.mp4",
"playLen": 48,
"height": 13,
"width": 76,
"thumbUrl": "http://dummyimage.com/400x400",
"myRoleType": 3,
"topic": [
"#hh",
"#哈哈"
],
"myUserName": "v2_060000231003b20faec8c7e28811c4d5cc0ded37b0779c48c759a7446a87688c2774e5300c32@finder",
"description": "hhh"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://api.geweapi.com/gewe/v2/api/finder/publishFinder' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"proxyIp":"",
"videoUrl": "https://scrm-1308498490.cos.ap-shanghai.myqcloud.com/pkg/436fa030-18a45a6e917.mp4",
"playLen": 48,
"height": 13,
"width": 76,
"thumbUrl": "http://dummyimage.com/400x400",
"myRoleType": 3,
"topic": [
"#hh",
"#哈哈"
],
"myUserName": "v2_060000231003b20faec8c7e28811c4d5cc0ded37b0779c48c759a7446a87688c2774e5300c32@finder",
"description": "hhh"
}'
返回响应
🟢200成功
application/json
Body
ret
integer
必需
msg
string
必需
data
object
必需
id
integer
作品ID
示例
{
"ret": 200,
"msg": "操作成功",
"data": {
"id": 14381299491553024000
}
}
🔴500服务器错误
修改于 2024-09-13 14:43:54