NodeJS trying to use a URL inside of a fs.createfilestream
up vote
0
down vote
favorite
I'm trying to do a post request onto my api, the api works perfectly ( I am able to post files, but not through a url), but now I'm trying to post through an url.
this is the code I have now, I removed some lines that aren't relevant to the question or were for testing.
request({
url: url + "gettoken"
, json: true
}, function (error, response, body) {
user = body;
var rs = fs.createReadStream(up.url);
var ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
ws.on('drain', function () {
rs.resume();
});
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
})
Can anyone please help me.
javascript node.js
add a comment |
up vote
0
down vote
favorite
I'm trying to do a post request onto my api, the api works perfectly ( I am able to post files, but not through a url), but now I'm trying to post through an url.
this is the code I have now, I removed some lines that aren't relevant to the question or were for testing.
request({
url: url + "gettoken"
, json: true
}, function (error, response, body) {
user = body;
var rs = fs.createReadStream(up.url);
var ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
ws.on('drain', function () {
rs.resume();
});
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
})
Can anyone please help me.
javascript node.js
What isup.url
?fs.createReadStream
only works for (local) files.
– robertklep
Nov 22 at 14:11
up.url is the url I'm using it is returned somewhere, the fs.createReadstream is only used as that is the way I found out how to do post requests, but if there is an other way, that would be possible too, but I have no idea what I could do
– Gido Selten
Nov 22 at 14:25
fs.createReadStream
is meant to read files, not to make POST requests, that's what therequest.post()
is for. Do you mean that you want to download a file fromup.url
and subsequently upload that file tourl +"upload?..."
?
– robertklep
Nov 22 at 14:27
yes, that's what I want
– Gido Selten
Nov 22 at 14:49
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to do a post request onto my api, the api works perfectly ( I am able to post files, but not through a url), but now I'm trying to post through an url.
this is the code I have now, I removed some lines that aren't relevant to the question or were for testing.
request({
url: url + "gettoken"
, json: true
}, function (error, response, body) {
user = body;
var rs = fs.createReadStream(up.url);
var ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
ws.on('drain', function () {
rs.resume();
});
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
})
Can anyone please help me.
javascript node.js
I'm trying to do a post request onto my api, the api works perfectly ( I am able to post files, but not through a url), but now I'm trying to post through an url.
this is the code I have now, I removed some lines that aren't relevant to the question or were for testing.
request({
url: url + "gettoken"
, json: true
}, function (error, response, body) {
user = body;
var rs = fs.createReadStream(up.url);
var ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
ws.on('drain', function () {
rs.resume();
});
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
})
Can anyone please help me.
javascript node.js
javascript node.js
asked Nov 22 at 11:38
Gido Selten
176
176
What isup.url
?fs.createReadStream
only works for (local) files.
– robertklep
Nov 22 at 14:11
up.url is the url I'm using it is returned somewhere, the fs.createReadstream is only used as that is the way I found out how to do post requests, but if there is an other way, that would be possible too, but I have no idea what I could do
– Gido Selten
Nov 22 at 14:25
fs.createReadStream
is meant to read files, not to make POST requests, that's what therequest.post()
is for. Do you mean that you want to download a file fromup.url
and subsequently upload that file tourl +"upload?..."
?
– robertklep
Nov 22 at 14:27
yes, that's what I want
– Gido Selten
Nov 22 at 14:49
add a comment |
What isup.url
?fs.createReadStream
only works for (local) files.
– robertklep
Nov 22 at 14:11
up.url is the url I'm using it is returned somewhere, the fs.createReadstream is only used as that is the way I found out how to do post requests, but if there is an other way, that would be possible too, but I have no idea what I could do
– Gido Selten
Nov 22 at 14:25
fs.createReadStream
is meant to read files, not to make POST requests, that's what therequest.post()
is for. Do you mean that you want to download a file fromup.url
and subsequently upload that file tourl +"upload?..."
?
– robertklep
Nov 22 at 14:27
yes, that's what I want
– Gido Selten
Nov 22 at 14:49
What is
up.url
? fs.createReadStream
only works for (local) files.– robertklep
Nov 22 at 14:11
What is
up.url
? fs.createReadStream
only works for (local) files.– robertklep
Nov 22 at 14:11
up.url is the url I'm using it is returned somewhere, the fs.createReadstream is only used as that is the way I found out how to do post requests, but if there is an other way, that would be possible too, but I have no idea what I could do
– Gido Selten
Nov 22 at 14:25
up.url is the url I'm using it is returned somewhere, the fs.createReadstream is only used as that is the way I found out how to do post requests, but if there is an other way, that would be possible too, but I have no idea what I could do
– Gido Selten
Nov 22 at 14:25
fs.createReadStream
is meant to read files, not to make POST requests, that's what the request.post()
is for. Do you mean that you want to download a file from up.url
and subsequently upload that file to url +"upload?..."
?– robertklep
Nov 22 at 14:27
fs.createReadStream
is meant to read files, not to make POST requests, that's what the request.post()
is for. Do you mean that you want to download a file from up.url
and subsequently upload that file to url +"upload?..."
?– robertklep
Nov 22 at 14:27
yes, that's what I want
– Gido Selten
Nov 22 at 14:49
yes, that's what I want
– Gido Selten
Nov 22 at 14:49
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
So the idea is to upload a file that's located at up.url
to another server at url + "upload?..."
.
Since fs.createReadStream
is meant to read local files, and not URL's, you need something that can create a stream from a URL (or rather, retrieve that URL and stream the response).
You can also use request
for that:
request({
url: url + "gettoken",
json: true
}, function (error, response, body) {
const user = body;
const rs = request.get(up.url);
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
});
Typically, file uploads work through multipart/form-data
, but your code doesn't suggest that being used here. If it is, the code would become something like this:
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`, {
formData : {
the_file : rs
}
});
// no `rs.pipe(ws)`
that works thank you!
– Gido Selten
Nov 22 at 15:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430170%2fnodejs-trying-to-use-a-url-inside-of-a-fs-createfilestream%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
So the idea is to upload a file that's located at up.url
to another server at url + "upload?..."
.
Since fs.createReadStream
is meant to read local files, and not URL's, you need something that can create a stream from a URL (or rather, retrieve that URL and stream the response).
You can also use request
for that:
request({
url: url + "gettoken",
json: true
}, function (error, response, body) {
const user = body;
const rs = request.get(up.url);
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
});
Typically, file uploads work through multipart/form-data
, but your code doesn't suggest that being used here. If it is, the code would become something like this:
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`, {
formData : {
the_file : rs
}
});
// no `rs.pipe(ws)`
that works thank you!
– Gido Selten
Nov 22 at 15:12
add a comment |
up vote
1
down vote
accepted
So the idea is to upload a file that's located at up.url
to another server at url + "upload?..."
.
Since fs.createReadStream
is meant to read local files, and not URL's, you need something that can create a stream from a URL (or rather, retrieve that URL and stream the response).
You can also use request
for that:
request({
url: url + "gettoken",
json: true
}, function (error, response, body) {
const user = body;
const rs = request.get(up.url);
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
});
Typically, file uploads work through multipart/form-data
, but your code doesn't suggest that being used here. If it is, the code would become something like this:
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`, {
formData : {
the_file : rs
}
});
// no `rs.pipe(ws)`
that works thank you!
– Gido Selten
Nov 22 at 15:12
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
So the idea is to upload a file that's located at up.url
to another server at url + "upload?..."
.
Since fs.createReadStream
is meant to read local files, and not URL's, you need something that can create a stream from a URL (or rather, retrieve that URL and stream the response).
You can also use request
for that:
request({
url: url + "gettoken",
json: true
}, function (error, response, body) {
const user = body;
const rs = request.get(up.url);
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
});
Typically, file uploads work through multipart/form-data
, but your code doesn't suggest that being used here. If it is, the code would become something like this:
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`, {
formData : {
the_file : rs
}
});
// no `rs.pipe(ws)`
So the idea is to upload a file that's located at up.url
to another server at url + "upload?..."
.
Since fs.createReadStream
is meant to read local files, and not URL's, you need something that can create a stream from a URL (or rather, retrieve that URL and stream the response).
You can also use request
for that:
request({
url: url + "gettoken",
json: true
}, function (error, response, body) {
const user = body;
const rs = request.get(up.url);
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`);
rs.on('end', function () {
console.log(filename);
});
ws.on('error', function (err) {
console.error('cannot send file ' + err);
});
rs.pipe(ws);
});
Typically, file uploads work through multipart/form-data
, but your code doesn't suggest that being used here. If it is, the code would become something like this:
const ws = request.post(url + "upload?token=" + `${user.token}&key=${user.key}&filename=${filename}`, {
formData : {
the_file : rs
}
});
// no `rs.pipe(ws)`
answered Nov 22 at 15:04
robertklep
134k17231240
134k17231240
that works thank you!
– Gido Selten
Nov 22 at 15:12
add a comment |
that works thank you!
– Gido Selten
Nov 22 at 15:12
that works thank you!
– Gido Selten
Nov 22 at 15:12
that works thank you!
– Gido Selten
Nov 22 at 15:12
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53430170%2fnodejs-trying-to-use-a-url-inside-of-a-fs-createfilestream%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is
up.url
?fs.createReadStream
only works for (local) files.– robertklep
Nov 22 at 14:11
up.url is the url I'm using it is returned somewhere, the fs.createReadstream is only used as that is the way I found out how to do post requests, but if there is an other way, that would be possible too, but I have no idea what I could do
– Gido Selten
Nov 22 at 14:25
fs.createReadStream
is meant to read files, not to make POST requests, that's what therequest.post()
is for. Do you mean that you want to download a file fromup.url
and subsequently upload that file tourl +"upload?..."
?– robertklep
Nov 22 at 14:27
yes, that's what I want
– Gido Selten
Nov 22 at 14:49