send_msg
POST
/send_msg
请求参数
Body 参数application/json
message_type
必需
One of
枚举值:
group
group_id
group_id
One of
user_id
user_id
One of
message
array [anyOf]
必需
object (文本消息)
可选
object (艾特消息)
可选
object (表情消息)
可选
object (图片消息)
可选
object (回复消息)
可选
object (JSON消息)
可选
object (语音消息)
可选
object (视频消息)
可选
object (markdown消息)
可选
示例
{
"message_type": "private", //group | private
"group_id": "480972475",
"user_id": "480972475", // type为group时不填写
"message": [
{
"type": "text",
"data": {
"text": "用面才务。定比眼表县。写单写加很研科。打王运土照。化知金步家你龙。全展标新。"
}
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/send_msg' \
--header 'Content-Type: application/json' \
--data-raw '{
"message_type": "private", //group | private
"group_id": "480972475",
"user_id": "480972475", // type为group时不填写
"message": [
{
"type": "text",
"data": {
"text": "用面才务。定比眼表县。写单写加很研科。打王运土照。化知金步家你龙。全展标新。"
}
}
]
}'
返回响应
🟢200成功
application/json
Body
status
enum<string>
必需
枚举值:
ok
retcode
number
必需
data
object
必需
message_id
number
消息ID
message
string
必需
wording
string
必需
echo
string | null
必需
示例
{
"status": "ok",
"retcode": 0,
"data": {
"message_id": 0
},
"message": "string",
"wording": "string",
"echo": "string"
}
修改于 2024-11-03 08:17:00