0

ビューを使用して、バッファを Box にアップロードします。しかし、私は次のエラーを受け取っています:

{ message: 'Bad request',type: 'error',details: [ { message: 'Unsupported document type.' } ] }

私のコードは次のとおりです。

    var boxViewLib= require('box-view');
    var boxView =boxViewLib.createClient(process.env.BOX_KEY);

    var boxOptions = {
        params:{ name:'red.jpg'}       
        ,retry : true
    }
// the params.Body is a Buffer 
boxView.documents.uploadFile(params.Body, boxOptions, function(err, boxData) {
                                     console.log('Upload to Box View');
                                     console.log('Err '+ err);
                                     console.log( boxData);
});

応答は次のとおりです。

Upload to Box View
Err Error: Bad request
{ message: 'Bad request',
  type: 'error',
  details: [ { message: 'Unsupported document type.' } ] }
4

1 に答える 1