框视图,上传缓冲区出现错误不支持的文档类型

box-view , Uploading buffer getting error Unsupported document type

查看将缓冲区上传到 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.' } ] }

您真的要上传 JPEG 图片吗?视图 API 目前仅支持文档和文本文件(请在此处查看完整列表:https://developers.box.com/view/#filetypes)。

否则,您的代码看起来没问题。