Adobe AIR on Mobile with Facebook
I am developing an Adobe AIR app for mobile devices to work with Facebook. I am using the Adobe ActionScript API for Facebook Platform
I am accessing the Facebook from Actionsctipt code as follows:
FacebookMobile.init("my-numeric-app-id", initHandler);
function initHandler(success:Object, fail:Object):void
{
// inside login handler
}
The success object is null and and the fail object has the message "An active access token must be used to query information about the current user."
What is wrong here or what else is needed to be done to mae it work?
