I am hosting a Facebook app on Google app engine, I need to make sure the user is logged into facebook before anything.

What I can currently do is display facebook's log in button using fbxml, but I prefer the user would be redirected to Facebook's log in page if he wasn't logged in, then back to my app's main page, this way I can make sure that the user is logged in before doing anything.

I am new to Facebook apps, I read here that I can redirect the user to

https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL

in order to authenticate him. But using GAE's self.redirect(url) doesn't work, the page stays the same. I was hoping I could do something like this in my handler:

if u'signed_request' in self.request.POST:
        facebook.load_signed_request(self.request.get('signed_request'))
        if not facebook.user_id:
            self.redirect("https://www.facebook.com/dialog/oauth?"+
                          "client_id={0}&redirect_uri={1}"
                          .format(FACEBOOK_APP_ID, EXTERNAL_HREF))
            return

but as i said earlier this doesn't work.

link|improve this question

61% accept rate
Is redirect not working or is there trouble with Facebook URL? – Peter Knego Jan 9 at 16:39
Have you checked that the self.redirect method is actually called ? – proppy Jan 9 at 17:29
The redirect is not working and yes, I am sure it is called – Mohamed Khamis Jan 9 at 21:18
btw I get a blank screen when the redirect is called – Mohamed Khamis Jan 9 at 21:28
I just noticed also that I get that error on the JS console when I do the above, it says: Refused to display document because display forbidden by X-Frame-Options. – Mohamed Khamis Jan 9 at 21:35
feedback

2 Answers

up vote 3 down vote accepted

I'm assuming by 'Facebook App' you mean a Canvas App - so something that will live at https://apps.facebook.com/YOUR_NAMESPACE from a user perspective?

If so, you'll need to add the redirect via Javascript using window.top, as your app is loaded in an iframe. See https://developers.facebook.com/docs/appsonfacebook/tutorial/ and search for 'top', then view the example toward the end of the page.

link|improve this answer
yes that's exactly what I mean, I tried adding this: <script>top.location.href = "https://www.facebook.com/dialog/oauth?client_id=[APP_ID]&redirect_url=http://ap‌​ps.facebook.com/[APP_NAME]/";</script> but then I get an error when I open the page: An error occurred with [APP_NAME]. Please try again later. – Mohamed Khamis Jan 9 at 21:25
Is that error shown in a Facebook window? If so, have you set the domain properly in the app settings? – mrtom Jan 10 at 0:34
Also, I doubt this is a problem, but you should URL encode your redirect url – mrtom Jan 10 at 0:35
it worked! The error was because I wrote redirect_url and not the correct redirect_uri, so it should be like that: <script>top.location = "https://www.facebook.com/dialog/oauth?client_id=[APP_ID]&redirect_uri=http://ap‌​‌​ps.facebook.com/[APP_NAME]/";</script> – Mohamed Khamis Jan 10 at 0:38
a-ha, good spot! :) – mrtom Jan 10 at 11:26
feedback

There are also good examples on the Php Sdk that facebook provides. I like the with_js_sdk.php example. It runs seamlessly and is good to follow. https://github.com/facebook/php-sdk http://developers.facebook.com/docs/reference/php/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.