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.

urllib2 is a python module that defines functions and classes to help with URL actions (basic and digest authentication, redirections, cookies, etc)

learn more… | top users | synonyms

1
vote
1answer
114 views

Facebook Payment Reports — credential issues

I've run into some snags in downloading reports through Facebook API. From documentation https://developers.facebook.com/docs/payments/developer_reports_api/ #Example company access_token request ...
2
votes
1answer
431 views

Facebook Python login script not using API

Ok, so I found a basic script to log in to facebook using python a while back. It didn't work - but after some tweaking (mainly around updating the post strings) it worked well for quite a while. Now ...
0
votes
1answer
427 views

search facebook public post using python [closed]

I am trying to develop a standalone application using python to collect facebook public post for data analysis. For example. Collect public opinion on a particular product, news,etc. I am totally ...
0
votes
2answers
2k views

Facebook publish HTTP Error 400 : bad request

Hey I am trying to publish a score to Facebook through python's urllib2 library. import urllib2,urllib url = "https://graph.facebook.com/USER_ID/scores" data = {} data['score']=SCORE ...
1
vote
1answer
324 views

Open Graph Action POST fails when called thru a google app engine based unpaid instance

urlopen fails with a 500 code and '{"error_code":1,"error_msg":"An unknown error occurred"}' error from Facebook when posting an Open Graph Action. I can get the code to work with other posts (e.g. ...
1
vote
1answer
1k views

HTTP Error 403 Forbidden with urllib2 but not with urllib with facebook graph api

I have the following code with urllib2 which prints HTTP Error 403: Forbidden but if I use urllib instead to fetch url, I don't see any error and I do get a list of my friends. The access token used ...
1
vote
1answer
1k views

What is a post_form_id? (using python urllib2)

I'm interested in writing a python script to log into Facebook and then request some data (mainly checking the inbox). There are few nice examples out there on how to do this. One interesting script i ...
0
votes
2answers
962 views

Troubleshooting Facebook's graph.put_object that returns error 400

I am using Facebook Python's SDK along with Google App Engine, and making a call to do a checkin: graph.put_object("me", "checkins", message="Hello, world", place="165039136840558", ...
1
vote
3answers
1k views

Python Open Multiple URL Connections - urllib2

I'm trying to create a python script that will allow me to load up multiple connections similar to having multiple tabs open on a browser, more explicitly I have a code like this: ...