- 开发指南
- 基础API
- 登录模块
- 联系人模块
- 群模块
- 消息模块
- 朋友圈模块
- 标签模块
- 个人模块
- 收藏夹模块
- 视频号模块
- 账号管理
获取群成员详情
POST
http://218.78.116.24:10883/gewe/v2/api/group/getChatroomMemberDetail
请求参数
Header 参数
X-GEWE-TOKEN
string
必需
示例值:
{{gewe-token}}
Body 参数application/json
appId
string
设备ID
chatroomId
string
群ID
memberWxids
array[string]
必需
示例
{
"appId": "{{appid}}",
"chatroomId": "34757816141@chatroom",
"memberWxids": [
"wxid_0xsqb3o0tsvz22",
"wxid_phyyedw9xap22"
]
}
示例代码
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://218.78.116.24:10883/gewe/v2/api/group/getChatroomMemberDetail' \
--header 'X-GEWE-TOKEN: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "",
"chatroomId": "34757816141@chatroom",
"memberWxids": [
"wxid_0xsqb3o0tsvz22",
"wxid_phyyedw9xap22"
]
}'
返回响应
🟢200成功
application/json
Body
ret
integer
必需
msg
string
必需
data
array [object {24}]
必需
userName
string
群成员的wxid
nickName
string
群成员的昵称
pyInitial
string
必需
quanPin
string
群成员昵称的全拼
sex
integer
性别
remark
string | null
备注
remarkPyInitial
string | null
备注的拼音首字母
remarkQuanPin
string | null
备注的全拼
chatRoomNotify
integer
消息通知
signature
string | null
签名
alias
string | null
微信号
snsBgImg
string
朋友圈背景图链接
bigHeadImgUrl
string
大尺寸头像
smallHeadImgUrl
string
小尺寸头像
description
null
描述
cardImgUrl
null
描述的图片链接
labelList
string | null
必需
country
string
国家
province
string | null
省份
city
string | null
城市
phoneNumList
array[string]
手机号码
friendUserName
string
好友的wxid
inviterUserName
string | null
邀请人的wxid
memberFlag
integer | null
标识
示例
{
"ret": 200,
"msg": "操作成功",
"data": [
{
"userName": "wxid_0xsqb3o0tsvz22",
"nickName": "G",
"pyInitial": "G",
"quanPin": "G",
"sex": 0,
"remark": null,
"remarkPyInitial": null,
"remarkQuanPin": null,
"chatRoomNotify": 0,
"signature": null,
"alias": null,
"snsBgImg": "http://shmmsns.qpic.cn/mmsns/s5BUfupeMYsJx3WHf6RyTxAqLUpGZPsgD9l68D5iaf7qibkcjz08RwNwDxj9ToFvnaicFD2X8CtPe4/0",
"bigHeadImgUrl": "https://wx.qlogo.cn/mmhead/ver_1/tmlG7SpZJMJEh0dA14icl4CWnliaI8pKvVicEMaowRywgVpljBK3nmBib0jHG4eVo5hiaqS7Gg0p7GwCuHopGYqdNBu9WVtxMB8icSFGUjibCDPoGXicPic1r3gx3PQ4YMf3GPfXj/0",
"smallHeadImgUrl": "https://wx.qlogo.cn/mmhead/ver_1/tmlG7SpZJMJEh0dA14icl4CWnliaI8pKvVicEMaowRywgVpljBK3nmBib0jHG4eVo5hiaqS7Gg0p7GwCuHopGYqdNBu9WVtxMB8icSFGUjibCDPoGXicPic1r3gx3PQ4YMf3GPfXj/132",
"description": null,
"cardImgUrl": null,
"labelList": null,
"country": "CN",
"province": "Guangdong",
"city": "Foshan",
"phoneNumList": null,
"friendUserName": "wxid_0xsqb3o0tsvz22",
"inviterUserName": "zhangchuan2288",
"memberFlag": 0
},
{
"userName": "wxid_phyyedw9xap22",
"nickName": "Ashley",
"pyInitial": "ASHLEY",
"quanPin": "Ashley",
"sex": 2,
"remark": "小号",
"remarkPyInitial": "XH",
"remarkQuanPin": "xiaohao",
"chatRoomNotify": 0,
"signature": "山林不向四季起誓 枯荣随缘。",
"alias": "zero-one_200906",
"snsBgImg": "http://shmmsns.qpic.cn/mmsns/UaAfqYic92wm7ZCrsEwlQMXSmBLs8dpwBzrXnrOyyP3B8bDibCCFInJ9PicC9LPYY17uWH1yIOmBYQ/0",
"bigHeadImgUrl": "https://wx.qlogo.cn/mmhead/ver_1/buiaXybHTBK3BuGr1edN72zBDermWVFJ7YC8Jib2RcCSdiauAtZcPgUQpdhE9KY5NsumDAWD16fsg3A6OKuhdEr97VAHdTGgk6R1Eibuj7ZNwJ4/0",
"smallHeadImgUrl": "https://wx.qlogo.cn/mmhead/ver_1/buiaXybHTBK3BuGr1edN72zBDermWVFJ7YC8Jib2RcCSdiauAtZcPgUQpdhE9KY5NsumDAWD16fsg3A6OKuhdEr97VAHdTGgk6R1Eibuj7ZNwJ4/132",
"description": null,
"cardImgUrl": null,
"labelList": "27",
"country": "AD",
"province": null,
"city": null,
"phoneNumList": [
"\n\u000b14752126220"
],
"friendUserName": "wxid_phyyedw9xap22",
"inviterUserName": null,
"memberFlag": null
}
]
}
修改于 2024-04-17 08:02:11