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.

I have dynamically created a html canvas image. I want to post it to facebook user's wall via javascript sdk. What I am doing is

I tried to convert canvas into a javascript image object var temp = canvas.toDataURL("image/png"); var finalimage=temp.replace(/^data:image/(png|jpg);base64,/, ""); & provide finalimage in fb.ui method

      FB.ui(
      {
       method: 'feed',
       name: 'The Facebook SDK for Javascript',
       caption: 'Bringing Facebook to the desktop and mobile web',
       description: (
       'A small JavaScript library that allows you to harness ' +
       'the power of Facebook, bringing the user\'s identity, ' +
       'social graph and distribution power to your site.'
       ),
     link: 'https://developers.facebook.com/docs/reference/javascript/',
     picture: finalimage
       },
      function(response) {
      if (response && response.post_id) {
      alert('Post was published.');
      } else {
      alert('Post was not published.');
      }
      }
       );

But I am getting an error

Error Message: picture URL is not properly formatted

Can anyone please help how do I do that??

share|improve this question

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.