Tagged Questions
1
vote
1answer
102 views
failed to get facebook access_token
This is a part of getting access_token taken from facebook-sdk example.
After I get the code, I do exactly following the example as below
if self.request.get("code"):
...
0
votes
1answer
40 views
Authentication for Passive user
I am writing a piece of code in Python2.7. I want to compare 2 users based on their Facebook accounts. For that I would need a users information such as Likes, Movies, Music, Books, Notes, ...
1
vote
1answer
726 views
How to read the wall of a private Facebook Group through a stand-alone python script?
We're making a game and for that game I need to 1) get all the messages in a private group's wall 2) parse the new messages since the last time I checked 3) other stuff not relevant.
I already wrote ...
2
votes
2answers
406 views
iframe tab facebook app displays on a new page instead of within the iframe/facebook-canvas
I am using Python and a javascript or php sdk.
To obtain the access_token - I follow the steps indicated on the docs page (https://developers.facebook.com/docs/authentication/). I pass the redirect ...
8
votes
1answer
646 views
Current pure python solution for facebook-oauth?
It looks like I was not the only one trying to avoid javascript altogether for a solution with OAuth 2.0 serverside. People could do everything but they couldn't logout:
Facebook Oauth Logout
Oauth ...
1
vote
1answer
2k views
How to enable Facebook OAuth 2.0 completely serverside?
I basically want to save the facebook ID of a given user so I can receive more material via Facebook. Ideally I want a solution that neither uses javascript nor cookie, just serverside but there was ...
4
votes
2answers
4k views
python oauth 2.0 new fbsr facebook cookie, error validating verification code
I'm trying to use the new fbsr_{{appID}} cookie.
I'm using the following functions to parse it, but when I try to get the access_token afterwards, I get 'error validating verification code' message. ...
2
votes
1answer
421 views
Facebook authentication - are there different approaches?
I'm in process of building an app for Facebook using Python and Django. I'm investigating different solutions for integration with Facebook authentication API.
So far I've found the two viable ...
10
votes
2answers
4k views
How to make Facebook Login possible in Django app ?
I have created a Django application. The app has a login functionality.
Can somebody help to find a way to make it possible to login using Facebook credential or point me some tutorials to implement ...
