Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code snippet is used to upload photo using facebook Javascript SDK. Can I use the imgURL to be base64 image URL string which is generated from Canvas? Something like "data:image/png;base64,iVBORw0KGgoAAAANSUh..."

var imgURL="http://farm4.staticflickr.com/3332/3451193407_b7f047f4b4_o.jpg";//change with your external photo url
FB.api('/album_id/photos', 'post', {
    message:'photo description',
    url:imgURL        
}, function(response){

    if (!response || response.error) {
        alert('Error occured');
    } else {
        alert('Post ID: ' + response.id);
    }

});
share|improve this question
any luck on this? – Crashalot Apr 17 '12 at 23:21
No, I am using backend PHP to do this. – Sanket Apr 18 '12 at 11:07
i think it's possible, just need to use multipart/form-data in the body of request. see here: developers.facebook.com/blog/post/498 – Crashalot Apr 18 '12 at 18:06
Since the Facebook JavaScript SDK documentation talks about an URL and not a data-URL, I would say the answer is: No. But how did you managed to do this by PHP SDK? – Olaf Watteroth Jun 12 '12 at 15:43
I converted the base64 data-URL string to binary data and created an image file on the server and uploaded the same. – Sanket Jun 13 '12 at 7:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.