我想使用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回复评论。
答案 0 :(得分:4)
这是一个很晚才回答的问题。但也许有人会打 有一天同样的问题。
缺少的是消息应该发布在请求的有效负载中,而不是发布在查询参数中。
POST https://api.trustpilot.com/v1/private/reviews/{reviewId}/reply?token={myAccesToken}
PAYLOAD: {"message": {myMessage}}
Content-Type: application/json
API文档的网址已更改为:https://developers.trustpilot.com/service-reviews-api#reply-to-a-review-
答案 1 :(得分:1)
使用Reply-to-Review API:
确保您使用的是正确的reviewID
您必须在请求中提供访问令牌,您已在进行
回复消息将以JSON格式提供为请求参数(请参阅:https://developers.trustpilot.com/review-api#Reply%20to%20a%20review。)
由于您要以JSON格式发布回复消息,请确保
一个。在Request标题中,“Content-Type”设置为“application / json”
B中。 HTTP方法类型为“POST”
如有任何问题,请联系support@trustpilot.com,我会在那里回复您