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.

Since early morning (gmt+1) the Facebook.getAuthResponse() command of the facebook-actionscript-sdk seems to be broken. It does not return neither the access_token nor the uid but return "null" instead.

This is very crucial for our facebook app, since we've been using this functionality very commonly.

One problem is our app init() function, but this is of course just one place where the command is used:

function handleInit(success:Object, fail:Object):void
{
    if (success && success != null)
    {

        if (Facebook.getAuthResponse().accessToken)
        {

            //
        }
        else
        {
            ExternalInterface.call("redirect", appID,"publish_actions","...");
        }
    }
    else
    {
        ExternalInterface.call("redirect", appID,"publish_actions","...");
    }
}

Did anyone else encounter the same problem or knows a workaround?

share|improve this question

2 Answers

up vote 3 down vote accepted

This might be caused by this FB platform bug report: https://developers.facebook.com/bugs/405378606190941

Fix will be pushed later today. Until then, there's a workaround in that bug report.

share|improve this answer
Thank you very much Donn! This seems to be exactly the source of our problems. – TicketToRide Aug 8 '12 at 17:23

Yeah this is really unacceptable. Same exact issue from the as3 sdk completely broke our app. You can get the uid from the login callback, that is still giving a working auth response for some reason

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.