Bot 回复反馈
最新更新:2024-03-01
Bot 回复反馈
对 Bot 的回复进行反馈,以帮助 Bot 开发者优化。
请求方式
POST
调用地址
https://api.gptbots.ai/v1/message/feedback
调用验证
详情参见 API 概述的鉴权方式说明。
请求
请求示例
curl -X POST https://api.gptbots.ai/v1/message/feedback \
-H 'Authorization: Bearer your_apikey' \
-H 'Content-Type: application/json' \
-d '{
"answer_id": "123456789",
"feedback": "POSITIVE"
}'
curl -X POST https://api.gptbots.ai/v1/message/feedback \
-H 'Authorization: Bearer your_apikey' \
-H 'Content-Type: application/json' \
-d '{
"answer_id": "123456789",
"feedback": "POSITIVE"
}'
此代碼塊在浮窗中顯示
请求头
字段 | 类型 | 描述 |
---|---|---|
Authorization | Bearer ${token} | 使用Authorization: Bearer ${token} 进行调用验证,请在 API 密钥页面获取密钥作为token 。 |
Content-Type | application/json | 数据类型,取值为application/json 。 |
请求体
字段 | 类型 | 必填 | 描述 |
---|---|---|---|
answer_id | string | 是 | Bot 回复的消息 ID。 |
feedback | string | 是 | 对 Bot 回复的反馈。 - POSITIVE:积极、喜欢、点赞、认可 - NEGATIVE:消极、不喜欢、点倒、不认可 - CANCELED:取消反馈 |
响应
响应示例
{
"affectCount": 0
}
{
"affectCount": 0
}
此代碼塊在浮窗中顯示
成功响应
字段 | 类型 | 描述 |
---|---|---|
affectCount | long | 本次反馈的成功数。成功反馈则为 1。 |
失败响应
字段 | 类型 | 描述 |
---|---|---|
code | int | 错误码。 |
message | string | 错误详情。 |
错误码
Code | Message |
---|---|
40000 | 参数错误 |
40127 | 开发者鉴权失败 |
20059 | Bot 已删除 |