- 开发指南
- 基础API
- 登录模块
- 联系人模块
- 群模块
- 消息模块
- 朋友圈模块
- 标签模块
- 个人模块
- 收藏夹模块
- 视频号模块
- 账号管理
- 更多信息
发送链接朋友圈
POST
/gewe/v2/api/sns/sendUrlSns
请求参数
Header 参数
X-GEWE-TOKEN
string
必需
示例值:
{{gewe-token}}
Body 参数application/json
appId
string
设备ID
allowWxIds
array[string]
允许谁看
atWxIds
array[string]
提醒谁看
disableWxIds
array[string]
不给谁看
privacy
boolean
是否私密
默认值:
false
content
string
朋友圈文字内容
thumbUrl
string
链接缩略图
linkUrl
string
链接地址
title
string
链接标题
description
string
链接描述
allowTagIds
array[string]
可选
disableTagIds
array[string]
可选
示例
{
"appId": "{{appid}}",
"allowWxIds": [],
"atWxIds": [],
"disableWxIds": [],
"content": "fugiat sint",
"description": "少建片规维门部好将门身对教实们十。一样八七太度及装电部力议应象好。标备北每备志活向较战同光体他。书从线复几细决并面很值话以上。做地江同般劳百山易率干当育起。把件市政层往响包况队算制发。",
"title": "族片物",
"linkUrl": "https://mbd.baidu.com/newspage/data/landingsuper?context=%7B%22nid%22%3A%22news_9648993262816279801%22%7D&n_type=-1&p_from=-1",
"thumbUrl": "https://pics7.baidu.com/feed/a1ec08fa513d269708aaf6569302e2f64216d843.jpeg@f_auto?token=6e5f324904b76e282b92e6c480b80cda",
"privacy": false,
"allowTagIds": [],
"disableTagIds": []
}
示例代码
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/sns/sendUrlSns' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"allowWxIds": [],
"atWxIds": [],
"disableWxIds": [],
"content": "fugiat sint",
"description": "少建片规维门部好将门身对教实们十。一样八七太度及装电部力议应象好。标备北每备志活向较战同光体他。书从线复几细决并面很值话以上。做地江同般劳百山易率干当育起。把件市政层往响包况队算制发。",
"title": "族片物",
"linkUrl": "https://mbd.baidu.com/newspage/data/landingsuper?context=%7B%22nid%22%3A%22news_9648993262816279801%22%7D&n_type=-1&p_from=-1",
"thumbUrl": "https://pics7.baidu.com/feed/a1ec08fa513d269708aaf6569302e2f64216d843.jpeg@f_auto?token=6e5f324904b76e282b92e6c480b80cda",
"privacy": false,
"allowTagIds": [],
"disableTagIds": []
}'
返回响应
🟢200成功
application/json
Body
ret
integer
必需
msg
string
必需
data
object
必需
id
integer
朋友圈ID
userName
string
必需
nickName
string
朋友圈作者的昵称
createTime
integer
发布时间
示例
{
"ret": 200,
"msg": "操作成功",
"data": {
"id": 14292804688606990000,
"userName": "zhangchuan2288",
"nickName": "朝夕。",
"createTime": 1703835092
}
}
修改于 2025-03-10 07:07:04