I'm using the Freshplanet Facebook ANE
I'm trying to use the ANE to post a link on Fb.
When there's a tap, FB window opens and I'm able to post my message. After the post, it come back to my application and everything crash. No message added on Fb...
I'm just calling onBtnShareLink function on Sprite Click, like this :
private function onBtnShareLink(e:String):void
{
if(Facebook.getInstance().canPresentShareDialog()) {
trace("ok");
Facebook.getInstance().shareLinkDialog( "http://***.com/", "***", "*** "+e, "*** "+e, "***", errorHandler );
} else {
Facebook.getInstance().webDialog( "feed", { 'link':"http://***.com" }, errorHandler );
}
}
try this...
I´m using too and it´s working for me...
Just set your URL and don´t change anything else and this will work.