Я пытаюсь загрузить образ base64 на страницу FaceBook с помощью Node.js. Мне удалось загрузить загрузку со всеми данными multipart и т.д., Если бы я прочитал файл из файловой системы (например, используя fs.readFileSync('c:\a.jpg))
Однако, если я использую кодированное изображение base64 и попробую загрузить его, он даст мне следующую ошибку: {"error":{"message":"(#1) An unknown error occurred","type":"OAuthException","code":1}}
Я попытался преобразовать его в двоичный файл new Buffer(b64string, 'base64');
и загрузить его, но не повезло.
Я боролся с этим в течение 3 дней, так что любая помощь была бы весьма признательна.
Изменить: если кто-то знает, как я могу преобразовать base64 в двоичный файл и успешно загрузить его, это также сработает для меня.
Изменить: фрагмент кода
var postDetails = separator + newlineConstant + 'Content-Disposition: form-data;name="access_token"' + newlineConstant + newlineConstant + accessToken + newlineConstant + separator;
postDetails = postDetails + newlineConstant + 'Content-Disposition: form-data; name="message"' + newlineConstant + newlineConstant + message + newlineConstant;
//Add the Image information
var fileDetailsString = '';
var index = 0;
var multipartBody = new Buffer(0);
images.forEach(function (currentImage) {
fileDetailsString = fileDetailsString + separator + newlineConstant + 'Content-Disposition: file; name="source"; filename="Image' + index + '"' + newlineConstant + 'Content-Type: image/jpeg' + newlineConstant + newlineConstant;
index++;
multipartBody = Buffer.concat([multipartBody, new Buffer(fileDetailsString), currentImage]); //This is what I would use if Bianry data was passed in
currentImage = new Buffer (currentImage.toString('base64'), 'base64'); // The following lines are what I would use for base64 image being passed in (The appropriate lines would be enabled/disabled if I was using Binary/base64)
multipartBody = Buffer.concat([multipartBody, new Buffer(fileDetailsString), currentImage]);
});
multipartBody = Buffer.concat([new Buffer(postDetails), multipartBody, new Buffer(footer)]);