Reviewboard API 忽略请求正文

Reviewboard API ignores request body

已安装reviewboard 2.5.7。

如果我使用 UI 从提交创建审查请求,它工作正常。 如果我使用 API 它会创建空请求并且看起来完全忽略 JSON 正文。

POST http://myhost/api/review-requests/
Authorization: token bla-bla
Accept: application/json

{
"changenum": null,
"commit_id": "e235168b0f0528d006fa2872bf582896ae121909",
"create_from_commit_id": true,
"force_text_type": null,
"repository": "myrepo",
"submit_as": null
}

API真的支持提交请求吗?

知道了:api 不支持 JSON 请求。 它应该是 application/x-www-form-urlencoded 带有表单参数。