我正在实现一个外部 API,我需要发送一个与 JSON 元部件捆绑在一起的文件附件。
服务器不接受以下代码,因为 Play 硬编码DataPart
to的内容类型text/plain
,并且服务器期望application/json
val meta = Json.obj(
"name" -> s"Invoice ${invoiceNumber}.pdf",
"referenceType" -> "INVOICE",
"referenceId" -> 42
)
ws.url("{API-URL}")
.addHttpHeaders("Authorization" -> s"Bearer ${accessToken}")
.post(Source(DataPart("meta", meta.toString) :: FilePart("file", s"Invoice ${invoiceNumber}.pdf", Option("application/pdf"), FileIO.fromPath(file.toPath)) :: List()))
.map(res => {
logger.debug("Status: " + res.status)
logger.debug("JSON: " + res.json)
Right(invoiceNumber)
})
API 端点的示例 curl(我已经测试和验证)命令是:
curl -H "Authorization: Bearer {accessToken}" \
-F 'meta={"name": "Invoive 4.pdf", "referenceType": "INVOICE", "referenceId": 42 } \
;type=application/json' \
-F "file=@Invoice.pdf" \
'{API-URL}'
有没有一种简单的方法可以强制DataPart
使用不同的内容类型或使用不同的部分来更好地控制我发送的内容?