Есть вот такой curl:
curl -X 'POST' 'http://127.0.0.1/?conf%3D%7B%22flag%22%3A%20%22true%22%7D' -H 'accept: application/json' -H 'Content-Type: multipart/form-data' -F 'v=@upload.mp4' --output 'arch.zip'
Мне нужно выполнить такой же запрос, но с помощью axios, пока есть вот такой код
const fd = new FormData();
fd.append('in_video', fileBuffer);
axios({
method: 'post',
url: 'http://127.0.0.1/',
params: {
conf: {"flag": "true"}
},
headers: {
'Content-Type': 'multipart/form-data'
},
data: fd,
}).then(response =>console.log(response))
.catch(error => console.log(error));
Не очень понимаю как реализовать флаг --output 'arch.zip'