Загрузка видео с помощью гатлинга - PullRequest
0 голосов
/ 02 сентября 2018

Привет я получаю сообщение об ошибке при загрузке видео. Это говорит - «akka.http.scaladsl.model.IllegalHeaderException: часть multipart / form-data должна содержать заголовок Content-Disposition с параметром name»

  .exec(
    http("request_1") // Here's an example of a POST request
      .post("upload?")
      .headers(Map("Content-Type" -> "multipart/form-data"))
      .headers(Map("Content-Disposition" -> """form-data; name="file""""))
      .headers(Map("name" -> "file"))
      .bodyPart(
        RawFileBodyPart("xyz.MP4")
          .contentType("video/mp4")
          .fileName("xyz.MP4")
          .dispositionType("Content-Disposition")
          .addP
          .fileName("xyz.MP4")
          .header("Content-Disposition", "name")
      )
      .asMultipartForm
      .queryParam("""xyz""", """true""") // Note the triple double quotes: used in Scala for protecting a whole chain of characters (no need for backslash)

Нужна помощь здесь.

...