{
"user_id": 123456,
"message": [
{
//第一个必须为reply
"type": "reply",
"data": {
"id": 1263753202
}
},
{
"type": "text",
"data": {
"text": "回复你了"
}
}
]
}
curl --location --request POST '/send_private_msg' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": 123456,
"message": [
{
//第一个必须为reply
"type": "reply",
"data": {
"id": 1263753202
}
},
{
"type": "text",
"data": {
"text": "回复你了"
}
}
]
}'
{
"status": "ok",
"retcode": 0,
"data": {
"message_id": 696124706
},
"message": "",
"wording": ""
}