0

nodejs を使用して動画を vimeo にアップロードしようとしています ( https://developer.vimeo.com/apis/advanced/upload at step 3 )。これは私が現在行っていることです:

まず、関数を呼び出してファイルを読み取ります。

var options = {
         hostname : dataObject.ticket.host,
         path : '/upload?ticket_id=' + dataObject.ticket.id,
         port : 8080,
         method: 'POST'
       }

postMovie(options);

オブジェクトからこれらのパラメーターを取得します。

{
    "generated_in": "0.0308",
    "stat": "ok",
    "ticket": {
        "endpoint": "http://126535.cloud.vimeo.com:8080/upload?ticket_id=9d818e8bd066dfd54e53f1be2fa3f958",
        "endpoint_secure": "https://126535.cloud.vimeo.com/upload?ticket_id=9d818e8bd066dfd54e53f1be2fa3f958",
        "host": "126535.cloud.vimeo.com",
        "id": "9d818e8bd066dfd54e53f1be2fa3f958",
        "max_file_size": "26843545600"
    }
}

この関数は次のように呼ばれます:

function postMovie(options){
    // This is an async file read
    fs.readFile('public/uploads/4363066343.mp4', function (err, data) {
      if (err) {

        console.log("FATAL An error occurred trying to read in the file: " + err);
        process.exit(-2);
      }
      // Make sure there's data before we post it
      if(data) {
        PostData(data,options);
      }
      else {
        console.log("No data to post");
        process.exit(-1);
      }
    });
};

ファイルが読み取られると、次のようになります。

function PostData(data,options) {

      var headers = {
          'Content-Type': 'video/mp4',
          'Content-Length': data.length
      }

      options.headers = headers

      console.log(options)

  // Set up the request
  var post_req = http.request(options, function(res) {
      res.on('data', function (chunk) {
          console.log('Response: ' + chunk);
      });
  });

  // post the data
  post_req.write(data);
  post_req.end();

  post_req.on('error', function(e) {
      console.log('problem with request: ' + e.message);
  });
}

私の post_req.on(error) はこれを記録します:

problem with request: write EPIPE
problem with request: write EPIPE

これは、サーバー側でのタイムアウトが原因であることを理解しています。

私のリクエストは整形式ではないと思います。

誰かが私が間違っていたことを指摘できますか?

4

1 に答える 1