我想从URL下载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);
    }


特威特作品。我可以发送状态更新并完全使用API​​。另外,当我先将媒体文件保存到磁盘然后使用fs读取它时,我可以发送它。但是我想以二进制形式从URL中获取它,并以某种方式将其上传到Twitter。

我该如何实现?

最佳答案

您将必须使用流:https://nodejs.org/api/stream.html或更具体地说:https://github.com/request/request#streaming

特别是类似

request('http://google.com/doodle.png').pipe(T.postMediaChunked)


不过,执行写入磁盘的中间步骤没有问题,您只需要在此之后进行清理即可。

关于node.js - Twit,直接从URL上传媒体,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40562851/

10-11 12:57