如何使用 Trustpilot 回复评论 API
How to reply to a review using Trustpilot API
我想使用 Trustpilot API 回复评论。
我已经有一个 access_token
,这是我的请求:
POST https://api.trustpilot.com/v1/private/reviews/{reviewId}/reply?message={myMessage}&token={myAccesToken}
但是这个请求总是得到 400 Bad Request 响应。
在 Trustpilot 的 API 文档中,没有关于此的规范。
https://developers.trustpilot.com/review-api#Reply 评论。
有人可以帮助我了解如何使用 TrustPilot 回复评论 API。
使用 Reply-to-Review API:
确保您使用的是正确的评论 ID
您必须在请求中提供访问令牌,您已经这样做了
回复消息将以JSON格式作为请求参数提供(请参考:https://developers.trustpilot.com/review-api#Reply%20to%20a%20review。)
由于您以 JSON 格式发布回复消息,请确保
一个。在请求中 header "Content-Type" 设置为 "application/json"
乙。 HTTP 方法类型是 "POST"
任何进一步的问题,请联系支持@trustpilot.com,我会在那里回复你
This is a very late reply to the problem. But maybe someone will hit
the same problem one day.
缺少的是消息应该发布在请求的有效负载中,而不是查询参数中。
POST https://api.trustpilot.com/v1/private/reviews/{reviewId}/reply?token={myAccesToken}
PAYLOAD: {"message": {myMessage}}
Content-Type: application/json
API 文档的 URL 已更改为:https://developers.trustpilot.com/service-reviews-api#reply-to-a-review-
我想使用 Trustpilot API 回复评论。
我已经有一个 access_token
,这是我的请求:
POST https://api.trustpilot.com/v1/private/reviews/{reviewId}/reply?message={myMessage}&token={myAccesToken}
但是这个请求总是得到 400 Bad Request 响应。
在 Trustpilot 的 API 文档中,没有关于此的规范。 https://developers.trustpilot.com/review-api#Reply 评论。
有人可以帮助我了解如何使用 TrustPilot 回复评论 API。
使用 Reply-to-Review API:
确保您使用的是正确的评论 ID
您必须在请求中提供访问令牌,您已经这样做了
回复消息将以JSON格式作为请求参数提供(请参考:https://developers.trustpilot.com/review-api#Reply%20to%20a%20review。)
由于您以 JSON 格式发布回复消息,请确保
一个。在请求中 header "Content-Type" 设置为 "application/json"
乙。 HTTP 方法类型是 "POST"
任何进一步的问题,请联系支持@trustpilot.com,我会在那里回复你
This is a very late reply to the problem. But maybe someone will hit the same problem one day.
缺少的是消息应该发布在请求的有效负载中,而不是查询参数中。
POST https://api.trustpilot.com/v1/private/reviews/{reviewId}/reply?token={myAccesToken}
PAYLOAD: {"message": {myMessage}}
Content-Type: application/json
API 文档的 URL 已更改为:https://developers.trustpilot.com/service-reviews-api#reply-to-a-review-