From @Shultzi on Wed Nov 16 2016 08:23:56 GMT+0000 (UTC)
Good day,
Iāve spent some time trying to upload file to ipfs using http request (from meteor).
Meteor.startup(() => {
// code to run on server at startup
Meteor.methods({
"getFile": function(){
var results = HTTP.get('http://127.0.0.1:5001/api/v0/object/get', {timeout:5000, params:
{"arg": "QmcNHzJeDphzamLVgKq1R3wmFXqw8EbWLVS6qhAPGohobM",
"encoding": "json"}});
return (results)
},
"uploadFile": function(){
var results = HTTP.post("http://127.0.0.1:5001/api/v0/add", {timeout:5000, params:{
"path": "/home/shultzi/trial.txt",
"stream-channels": "true",
"arg": "/home/shultzi/trial.txt",
//"Content-Type": "multipart/mixed",
//"file": "trial.txt"
//"Content-Type": "multipart/form-data"
}, header: {
//"Content-Type": "application/octet-stream",
"enctype": "multipart/form-data",
"Content-Type": "multipart/form-data",
}});
return (results)
}
})
})
The first http request (getFile) works just fine, but when Iām trying to upload the file I constantly get the error message āFile argument āpathā is requiredā. Iāve tried to modify my http request in many ways, adding stream-channels and changing multipart, but nothing seems to work.
I know thereāre some js apis out there, but I really want to work with my own http requests.
Iāll highly appreciate any type of help, suggestion or insight you might have!
Copied from original issue: https://github.com/ipfs/support/issues/43