我想从网址下载img并直接将其上传到Twitter,而不是先将其保存到文件中。
到目前为止,我已经测试了我在网上找到的所有方法,但没有运气。我总是得到"媒体类型无法识别"错误。
http.get("http://localhost:9000/screenshot/capture/" + shot.slug,
function(response){
if (response.statusCode == 200) {
response.setEncoding('binary');
var imageFile = "";
response.on('data', function(chunk){
imageFile += chunk;
});
response.on('end', function(){
imageFile = imageFile;
// first we must post the media to Twitter
T.post('media/upload', {media_data: imageFile.toString('base64')}, function (err, media, response) {
if(err) return console.log("ERRR2: ", err);
console.log("DATA: ", media);
console.log("RESPONSE: ", response);
// now we can assign alt text to the media, for use by screen readers and
// other text-based presentations and interpreters
var mediaIdStr = media.media_id;
var altText = "Alt text for the shot";
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } };
console.log(meta_params);
T.post('media/metadata/create', meta_params, function (err, data, response) {
if (!err) {
// now we can reference the media and post a tweet (media will attach to the tweet)
var params = { status: 'by @' + twitter_handle + ' at ' + "http://localhost:9000/" + shot.slug, media_ids: [mediaIdStr] };
T.post('statuses/update', params, function (err, data, response) {
console.log("DATA: ", data);
})
}
});
});
})
//console.log(image);
}
Twit有效。我可以发送状态更新并一直使用API。我首先将媒体文件保存到磁盘然后用fs
读取它。但我希望从url中获取它作为二进制文件并以某种方式将其上传到Twitter。
我怎样才能做到这一点?
答案 0 :(得分:0)
您将不得不使用流:https://nodejs.org/api/stream.html或更具体地说:https://github.com/request/request#streaming
特别是类似
request('http://google.com/doodle.png').pipe(T.postMediaChunked)
尽管执行写入磁盘的中间步骤没有问题,您只需要在此之后进行清理即可。