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'm attempting to export the data from an HTML5 canvas (either as a data URL or a blob) and post it to facebook. I'm using phonegap 1.2, iOS 5 and the phonegap facebook plugin

var bytes;
canvas.toBlob(function(blob){ bytes = blob; });
var body = 'Test';
FB.api('/me/photos', 'post', { name: body, picture:bytes }, function(response) {
if (!response || response.error) {
    alert(response.error);
} else {
  alert('Post ID: ' + response.id);
  }
  });
} else {
  alert('not logged in');
 }
},
{ perms: "email, publish_stream" }
);

I'm receiving an error: 'com.phonegap.facebook.Connect2 = TypeError: 'undefined' is not an object'

Unfortunately the graph API seems to be horribly documented....so I'm not sure where to go. I'm able to upload a photo by simply passing a URL, but using a data url or a blob results in this error. Any ideas? Is it possible to pass a byte array/blob/etc or is this not supported at all?

share|improve this question

1 Answer

in file facebook_js_sdk.js try commenting out the line;

//if (h.length > 2000) throw new Error('JSONP only support a maximum of 2000 bytes of input.');

I think the plugin uses an old version of the facebook js api

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.