Hi Im using this script to post:
postToFb:function () {
//alert(window.FbPostParameters.link);
FB.api('/me/feed', 'post', window.FbPostParameters, function (response) {
if (!response || response.error) {
console.log('/me/feed - Error occured');
} else {
console.log('/me/feed - Published to stream!');
}
});
},
And alerted window.FbPostParameters.link is:
http://www.facebook.com/FBPAGENAME/app_APPID?app_data=forum
Its funny, cuz when I checked the wallpost the url has become this:
http://www.facebook.com/FBPAGENAME?ref=hl&sk=app_APPID%26app_data%3Dforum
The problem is that the posted url is fully functional (and fb passes app_data to application) but the latter one is not working. Not even renders the application tab until I remove the %26app_data%3Dforum part.
I could not find any resource to debug this problem. Can you help me?
ps: encodeURI or encodeURIcomponent results the same.
UPDATE: link to example: http://www.facebook.com/kenivajszmuller/app_238038449651632
Can anyone help? ty
httpandhttps? It's close to impossible to help you debug, without you having dug a bit more before posting or giving us some guidance... – Claudiu Sep 11 '12 at 18:40