我试图使用REST客户端在Sandbox URL上使用RingCentral的传真API:
https://platform.devtest.ringcentral.com/restapi/v1.0/account/~/extension/~/fax 具有以下内容:
Authorization: Bearer {{my access_token}}"
Content-Type: application/json
{
"to": [{
"phoneNumber": "<my phone number>"
}],
"faxResolution": "High",
"sendTime": "2019-02-20T09:30:10.800Z"
}
但是从传真API收到 Bad Request 问题:
status code=400 content type=application/json;
{
"message": "Bad Request",
"errors": []
}
答案 0 :(得分:1)
问题明确显示了 contentType 或传真MIME正文 ...
由于传真api支持将附件作为数据。 400错误的请求错误是由于内容或哑剧类型错误引起的
Content-Type: multipart/mixed
API允许发送包含多部分请求(包含两个或更多部分)的传真消息。
ref:https://developers.ringcentral.com/api-reference#
以下参考文献对此进行了描述: