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'm "translating" a simple app I made with PHP to Python in order to use it in Google App Engine. In PHP I have the session check and the redirection with this code:

$fbuser = null;
$fb = null;

//Start Facebook
$fb = new Facebook(array(
                        'appId'  => $appId,
                        'secret' => $secret,
                        'cookie' => true,));
$session = $fb->getSession();

if ($session) {  
    try {  
        $fbuser = $fb->api('/me');  
    } catch (FacebookApiException $e) {
        error_log($e);
    }  
}
if (!$fbuser) {
    $loginUrl = $fb->getLoginUrl(array('canvas' => 1, 'fbconnect' => 0,
                                             'req_perms' => 'publish_stream, offline_access, user_birthday, user_location, email',
                                             'next' => $baseUrl,
                                             'cancel_url' => $baseUrl ));

        echo "<script type=\"text/javascript\">\ntop.location.href = \"$loginUrl\";\n</script>";
        exit;
}

I've seen the Python-SDK for Facebook but it's very poor and hasn't all the useful method as PHP-SDK! Can you help me translate this code to Python?

share|improve this question
What have you got so far? This isn't rentacoder, and this question sounds more like "write my code for me" then "help me write it". – Wooble Mar 6 '11 at 15:29
absolutely not! since a lot of people have been developing facebook applications using python I thought that code for sort this out was already available. Calm down, we are here to learn and share not to accuse or exploit other's work. – mrgorefest Mar 6 '11 at 15:46
I would also like to know the solution to this problem. – Kort Pleco May 27 '11 at 18:54

1 Answer

I think this example from the SDK git repository will give you a hint.

share|improve this answer
I've seen it and also tested locally but this is not what I meant. This example is more similar to Facebook Connect rather than to application's authentication e permission request. I hope to be clear. – mrgorefest Mar 6 '11 at 15:49
I just started an Issue on github: github.com/facebook/python-sdk/issues/57 – mrgorefest Mar 8 '11 at 15:38

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.