--
You received this message because you are subscribed to the Google Groups "facebook-actionscript-api" group.
To view this discussion on the web visit https://groups.google.com/d/msg/facebook-actionscript-api/-/3vWTyokaeagJ.
To post to this group, send email to facebook-act...@googlegroups.com.
To unsubscribe from this group, send email to facebook-actionscr...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/facebook-actionscript-api?hl=en.
We also noticed this, the major issue we found was the the getAuthResponse() method in the Facebook.as file is no longer returning good data, everything was null.
But we also worked around this by just using the data in the callback from the Facebook.init() call.
function doInit(appId:String):void {
Facebook.init(_appId, onFacebookInit, {cookie:true,status:true,oauth:true});
}
function onFacebookInit(success:Object, failure:Object):void {
if(success) {
_uid = success.uid;
_accessToken = success.accessToken;
}
}
Here we are saving away the uid and access token from the success call and not trying to access it from Facebook.getAuthResponse()
This got our application back up and authorizing properly.
Mike