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.

My web application features a FB login button which is wired to some client side javascript to modify an html "online" element. The PHP side features the standard constructor

function facebook()
{

    return new Facebook(
        array(
            'appId' =>  getSetting("fb:app_id"),
            'secret' => getSetting("fb:secret")
            ));;
}

Now my understanding is that this should and could take care of all access token caching etc. So why do subsequent ajax calls back to my server app (which then does FB authentication again) take so long? I do need to recreate the Facebook object at every page access dont I? And it should take care of efficiency via its own session management?

Or am I approaching it incorrectly? Should I do this once to determine things like user FB ID (which I then use for app specific authentication) and then inform the server of log in/out with ajax call backs so my server is aware of the FB status? Hopefully this makes some kind of sense!

share|improve this question
Well, simply : dont authenticate on each call back. The PHP Auth process takes ages - its doesnt seem to do any smart caching. So i merely monitored the status change and call the PHP via ajax which then caches the state after itself authenticating/deauthenticating once for that page lifetime on the PHP side to avoid feigned admin rights from the client for things like save/delete etc. – Richard Riley Oct 26 '11 at 13:28

1 Answer

up vote 0 down vote accepted

Need to cache on the php side and not reauthenticate on each call back.

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.