Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Firstly apologies if I get this wrong it's my first post.

I've been building an Android game and I've been trying to integrate Facebook posting into it. Here are the details of tech:

  • Windows 7
  • Developing in FDT
  • Using Flex 4.6 and Adobe Air for Android
  • ActionScript 3.0.

I've plugged in FacebookMobile.init and I pass in both my App's ID and a callback function. However I get the following message returned:

"{"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException","code":2500}}"

I noticed on some other pages people have bought this up with no real solution. I have tried the damarmada solution found on another site this didn't work either.

Thanks for your time,

share|improve this question
Looks like you’re already past initialization, and already trying to query data … but, hard to tell without code. – CBroe Jun 13 '12 at 18:43
Yeah that's what's weird about it I get that from calling this: "FacebookMobile.init(FacebookInformation.FACEBOOK_APP_ID, onInit);" – Anthony James Grand-Scrutton Jun 14 '12 at 9:34

3 Answers

That sounds like your app hasn't logged in, or if you are using SingleSignOn that the Facebook app is not logged in. Login gives you / the Facebook app an access token that you then supply on requests for data.

share|improve this answer
Yeah this is what's confusing me that error message is literally coming back from: "FacebookMobile.init(FacebookInformation.FACEBOOK_APP_ID, onInit);" – Anthony James Grand-Scrutton Jun 14 '12 at 9:35

UPDATED I believe now that you are putting the FacebookMobile.login() in the wrong spot. Add it to the handler for FacebookMobile.init(), ideally under some kind of else test for if the success object comes back null (which it will when you are not initialized).

You can also still use the below, though the facebook-actionscript-api does seem to work.

To make things simpler for yourself, suggest following the suggestions under the "Windows, OS X and Linux native apps" heading here: https://developers.facebook.com/docs/authentication/

As per the last line of the doc there, use a StageWebView ( http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageWebView.html ) and listen for the StageWebView locationChange events.

Handle the location redirect uris as you will, but the key thing here is on the default one they give you with the access token (https://www.facebook.com/connect/login_success.html) grab the access token from the url using the StageWebView location property and once it's in your app you can easily create your own URLRequest and use it how you will with your remote services.

Best I've got, please comment if you have a better way.

share|improve this answer

THE SOLUTION !!

private function onAddedToStage(event:Event):void
{
    FacebookMobile.init(_appId, initHandler);
}   
private function initHandler(success:Object,fail:Object):void
{
    if(success)         
{               
    // good the user is already connected           
}           
else            
{
    var myWebView:StageWebView = new StageWebView();
    myWebView.stage = Starling.current.nativeStage;
    myWebView.viewPort = new Rectangle(0,0,stage.stageWidth,stage.stageHeight);
    FacebookMobile.login(loginHandler, Starling.current.nativeStage, PERMISSIONS, myWebView);
    }       
}

from: http://forums.adobe.com/thread/928058

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.