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.

While trying to loggin on the facebook app I'm developping, after calling:

echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";

I'm being redirected to this page:

https://www.mywebpage.com/facebook/apps.facebook.com/myappname#_=_

witch is not a valid page, and I imagine the right page to be redirected should be:

apps.facebook.com/myappname

Does anyone knows how to solve this? Thanks!

share|improve this question

2 Answers

up vote 0 down vote accepted

What about php redirect

or lots of similar ways to redirect straight?

Harry

share|improve this answer
1  
Thanks for that, and sorry for the silly question. I'm new on that and thought this was something with the app configuration. – Filipe Nov 15 '11 at 3:46
$loginUrl = $facebook->getLoginUrl(
    array(
        'redirect_uri' => YOUR_CANVAS_URL
    ))

YOUR_CANVAS_URL should start with 'https://'

share|improve this answer
I also had this wrong. Thanks! – Filipe Nov 15 '11 at 14:53

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.