var params = {};
params['type'] = 'photo';
params['name'] = 'Cool photo!';
params['description'] = 'Hello facebook!';
params['link'] = 'http://www.example.com';
params['picture'] = url;
FB.api('/me/photos', 'post', params, function(response) {
if (!response || response.error) {
console.log(response.error);
} else {
alert('Published to stream!');
}
});
Currently returns the response '(#324) Requires upload file'. I have done some reseach and realize this is because the request requires 'multipart/form-data' for the photo data. Is there a way to do this using js?
NOTE: Yes, I want to upload a photo, full size.