Analysis of curl request parameters

curl "https://a.com?filename=myfile.dat&token=123" \
  -v -u {email_address}:{password} \
  -H "Content-Type: application/binary" \
  --data-binary @file.dat -X POST

how can this curl request be parsed into a post format that js can use?

var formdata = new FormData();
formdata.append("filename",file);
formdata.append("token","123");

I write this, request error: 422 Unprocessable Entity

Feb.28,2021

this is a file upload, and the front end cannot be done only through JS. You need to select the uploaded file.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2c2c2-33ea2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2c2c2-33ea2.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?