I would like users to be able to post to their wall from my site. When I click on the link to the FB link, the Facebook popup simply says "An error has occurred. Please try again later." Firebug just says the "Image is corrupted or truncated" error. I get the same message if you try to use any FB method, for example FB.login or FB.getLoginStatus. I know that there is not much to leave, but does anyone have any ideas on what is going wrong, or is there a better way to debug this?
function load_FB(){ FB.init({ appId : xxxxxxxxxxxxxxxx, status : true, cookie : true, xfbml : true }); } var publish = {method: 'feed', message: 'my message'}; function publish_wall_post() { FB.ui(publish); }
mill
source share