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.

I've some issue to login my website usign php sdk in case of login already perfomed on facebook.

login code used retrieved from https://developers.facebook.com/docs/reference/php/facebook-api/

For example I login on facebook through facebook.com site. After I open my website, it wrote me "Please login".

why? So I've found information about the access token and old post where it was suggested to use offline_access. But if I'm in right it's been deprecated.

Now I'm looking for new login authentication, but I don't understand how to manage this better.. Is js function the only way to check previously login on facebook?

many thanks

share|improve this question

closed as not a real question by casperOne Nov 12 '12 at 12:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Have you tried to use the https://github.com/facebook/facebook-php-sdk by following this guide: https://developers.facebook.com/docs/reference/php/ ?

share|improve this answer

For example I login on facebook through facebook.com site. After I open my website, it wrote me "Please login". why?

Because the PHP SDK, that runs on your server under your domain, has no clue what has happened on other domains.

Is js function the only way to check previously login on facebook?

Yes. Because it works client-side, and can make a cross-domain request to facebook.com and check for cookies that might be set for that domain.

share|improve this answer

I'm trying to understand if topic related access token https://developers.facebook.com/docs/howtos/login/login-as-app/

but I'm not sure that is the right solution.. so in this way I can get the access token.. and then? I have to set it? facebook->setToken? Could it be the solution?

Many thanks

share|improve this answer

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