マルチパート フォーム データを使用してファイルを送信しようとしましたが、次のエラーしか表示されません。
{"description":"Error: Bad Request: chat_id is empty","error_code":400,"ok":false}
これが私のコードスニペットです。エラーを犯している場所を誰か助けてもらえますか?
public HttpResponse<jsonnode> sendDocument(Integer chat_id,File f1) throws UnirestException {
return Unirest.post(endpoint + token + "/sendDocument")
header("accept", "application/json")
.field("chat_id", chat_id)
.field("document", f1)
.asJson();
}