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.

When I try to logout from facebook-connect PHP, it redirects me to the facebook profile page. I use this code to get the redirect URL:

$facebook->getLogoutUrl(array(
    'next' => base_url().'access/'
));

Where base_url() is a personal function that returns 'localhost/myWebsite/'.

Any Idea?

share|improve this question

1 Answer

Maybe "localhost/myWebsite" could not recognized as an absolute path. Do you tried "http://".base_url().'access/' on array ?

ex: http://facebook.stackoverflow.com/questions/4760680/facebook-php-sdk-getlogouturl-problem

share|improve this answer
Sorry Claudson. Indeed, base_url() returns the absolute path localhost/myWebsite But it still doesn't work. I tried your link, but it's still not working. – htaidirt Mar 18 '12 at 19:40
Do you get url returns the method and used header("location: ...") to redirect ? Like facebook.stackoverflow.com/questions/8229869/… ? – Claudson Oliveira Mar 18 '12 at 19:54
Yes. That's why I was redirected to facebook page. – htaidirt Mar 19 '12 at 6:15
Do you configured the app settings? I think that you only could redirect to logout to any domain. – Claudson Oliveira Mar 24 '12 at 14:35

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.