无法上传base 64到imgur

时间:2015-04-27 21:56:10

标签: javascript node.js npm base64 sails.js

    up: function(req, res) {
    console.log(req.param('image'));
    imgurwrap.setClientID('myImgurClientID')
    imgurwrap.uploadImageBase64({
        image: req.param('image'),
        title: 'sfdsf',
        description: 'sfsdf'
    }, function(err, res) {
        console.log(res);
        console.log(err);
    });
},

此代码返回一个包含空图像的网址:http://i.imgur.com/1cmilFL.png。但是,如果我声明一个变量并将我编码的base64字符串放入其中,它就可以工作。 所以我认为一些数据是在请求中出现的,但差异显示没有区别。我已经尝试了其他npm imgur模块,它总是相同的行为,所以必须有一些东西在我身边,但我无法弄清楚..

0 个答案:

没有答案