创建一条聊天消息。聊天消息有3种类型分别为,私密聊天消息、群组消息、群私聊消息。
Request
HTTP request
POST https://www.featapi.com/api/party/message/
Parameters
无需添加参数。
Authorization
该请求需要授权以下scopes访问权限:
Scopes |
---|
party_message |
For more information, see the authentication and authorization page.
Request body
In the request body, supply a Party.Message resource with the following properties:
Property name | Value | Description | Notes |
---|---|---|---|
必填 | |||
to_user | string | 这是私密聊天消息,接收者的用户ID | |
to_group | string | 这是群组聊天消息,目标群组的ID | |
content | string | 聊天消息的内容 |
注意:to_user和to_group字段,两者只需选其一提交。如果两个字段同时提交,则表示这是群私聊消息,对群组的某个成员发送群私聊消息,只有目标用户和群主能看到该消息。
Response
如果请求成功,该API返回当前登录用户创建的Party.Message消息数据在响应体信息。
201 Create a Message successfully
{
"data": {
"id": 22568,
"from_user": 7815769374283,
"from_name": "WenWei Yang",
"to_user": 3616060330793,
"to_name": "zetong lin",
"to_group": null,
"content": "消息内容",
"message_type": 0,
"send_time": "2020-06-11T09:05:56.203982Z",
"location": "USA•New York",
"timezone": "America/New_York",
"detail": { }
}
}
400 Validation Exception
示例返回数据可参考 API Common – Validation Exception