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 have one website app in facebook. It was working fine till now. But suddenly i am seeing infinite redirects.

I am using PHP SDK. Why it is happening? How do i fix it?

Thanks

It is facebook APP. The url looks like this after authentication. url.com?state=blabla&code=blabla

But It keeps redirecting. It is because i have given redirection if the authentication if false.

But I don't know why it is not successful. It was working good before few mins too.

$user = $facebook->getUser();

is always 0

 $facebook = new Facebook(array(
  'appId'  => $app_id,
  'secret' => $app_secret,
  'cookie' => true
));

version is 3.1.1

share|improve this question
1  
You need to provide details, your question is unanswerable as it is. – Maerlyn Feb 18 '12 at 16:47
It's difficult to figure out what's wrong if you don't show any code or tells us if anything changed between the time it was fine and the time you started seeing the redirects. Did you change anything in this time? – xanderer Feb 18 '12 at 16:48
I just tried to add me few more details. I dont know the real problem since it is not working suddenly. I didnt make any change in any files... – Kamini Feb 18 '12 at 16:54
What p3p headers do you have set? – DMCS Feb 22 '12 at 18:25
Check if cookies are enabled Or try using cookie => false in your code. – Aman Singh Kamboj Sep 7 '12 at 18:33

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.