upload with curl
See original GitHub issueI have a minimal example done with express.js but I cant get it to work. here is my routes/index.js:
var express = require('express');
var router = express.Router();
var multer = require("multer");
var upload = multer({ destination: './'})
router.post('/restapi', upload.single('weg'), function(req, res, next){
console.log("here");
console.log(req.file);
console.log(req.body);
if(!req.file){
res.json({"error": "not working"});
return;
}
res.json({"error": "test"});
return;
});
router.get('/', function(req, res, next) {
res.json({ "title": "Express" });
return;
});
module.exports = router;
I want to upload a file to the server with the command:
curl -F weg=@weg.txt localhost:port/restapi; echo {“error”:“not working”}
and my output on the server side is:
node ./bin/www
here undefined {} POST /restapi 200 17.450 ms - 23 here { fieldname: ‘weg’, originalname: ‘weg.txt’, encoding: ‘7bit’, mimetype: ‘text/plain’, buffer:
So the file does get uploaded eventually but before the server returns to the client with the error message “not working” because req.file is undefined. Can anyone help?
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Upload files with CURL - Medium
The proper way to upload files with CURL is to use -F ( — form) option, which will add enctype=”multipart/form-data” to the request....
Read more >A Step-By-Step Guide To A CURL Upload File - Filestack Blog
CURL upload file allows you to send data to a remote server. The command-line tool supports web forms integral to every web system....
Read more >How do I post a file using Curl? - ReqBin
To post a file with Curl, use the -d or -F command-line options and start the data with the @ symbol followed by...
Read more >Uploads - Everything curl
HTTP, and its bigger brother HTTPS, offer several different ways to upload data to a server and curl provides easy command-line options to...
Read more >Using cURL to upload POST data with files - Stack Overflow
I would like to use cURL to not only send data parameters in HTTP POST but to also upload files with specific form...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I ran another test using Postman and there the example we set up works just fine. So I suppose it has something to do with my cURL. I am sorry for the inconvenience but I wouldn’t have guessed that something is wrong on that side.
I added your suggestion but with minor adapdation to create a log: