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 a canvas app in facebook, and I'm using the code:

$loginUrl = $facebook->getLoginUrl(
    array(
    'canvas'    => 1,
    'fbconnect' => 0,
    'scope' => 'email,publish_stream,offline_access'

));

However all the time when a user clicks the "Go To App" button it redirects straight back to my app not in facebook, but in fact the full URL.

How can I make it go back to the app page?

share|improve this question

1 Answer

Ok, so the answer was fairly simple.

$loginUrl = $facebook->getLoginUrl(
    array(
    'canvas'    => 1,
    'fbconnect' => 0,
    'scope' => 'email,publish_stream,offline_access',
    'redirect_uri' => 'http://uri'

));

However if you have Canvas App selected in app settings that redirect_uri must be the same as the url set for Canvas App.

If it is just a page tab, you can redirect to anything

share|improve this answer
What is the answer? What does "uri"; stand for? Using exactly what you wrote here just results in an error on Facebook. – FutureMillennium Jun 9 '12 at 18:46
uri will be the URL of the app page. Essentially "redirect_uri" => "{your url to redirect to here}" – rickyduck Jun 12 '12 at 10:03

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.