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'm using Symfony 2.1 for a project & I'm using FOSFacebook bundle integrated with FOSUser bundle. when the user logs into my application no information is retrieved! i mean this line goes in exception :

namespace Acmes\UserBundle\Security\User\Provider;
class FacebookProvider implements UserProviderInterface {
//...
public function loadUserByUsername($username) {
 //...
 try {
       $fbdata = $this->facebook->api('/me');
   } catch (FacebookApiException $e) {
       $fbdata = null;
     }
 //...

} } when the user logs in, the button change to 'logout' but i get the error :

"The user is not authenticated on facebook"

which means that $fbdata is null & no info has returned back from facebook application.

any solution? thanks!:)

share|improve this question
have you read the exception message ? maybe you misconfigured your facebook app – Julien Rollin Jan 31 at 12:15
@JulienRollin,thanks for your answer,I think that I've checked every thing, but to ensure,is there any documentation which says how to config facebook application for using in this way? – parisa shad Feb 1 at 11:05
have you put the twig helper "facebook_initialize" in your layout/template ? Are you connected to facebook in an another tab ? Facebook php sdk uses a session cookie to know if you are connected – Julien Rollin Feb 1 at 11:55
yes!and as i said the login button changes to logout button + after that user is authenticated in facebook in other tabs.. :( – parisa shad Feb 2 at 15:44
ok...so, check your app configuration in facebook (sandbox? allowed domain ?), remove all your cookies, and maybe remove access to your app in your facebook app pages ( "page settings" > tab "application") ? As it, you will retest the whole auth process :) – Julien Rollin Feb 2 at 16:07
show 8 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.