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 am looking for how to implement a upload in Python, I downloaded the pyFacebook but the documentation is gone and there are a lot of old post on Google. I wondering if someone has made it or I need to create a facebook app to upload the picture.

I am quiet new on the Python world, so any help , even if it's stupid , it's appreciated.

share|improve this question
Are you building a command line application or a web application with Python? – Connor Treacy Jun 19 '12 at 11:45
I am creating any application with ubuntu quickly, the application is running with GTK as GUI – max246 Jun 21 '12 at 21:18

1 Answer

You can achieve this with any language using the Facebook Graph API. See this blog post for an example: https://developers.facebook.com/blog/post/498/. It's written in PHP but the basic Graph API methods are the same in any language as long as you can call a URL with some parameters.

In this case, the call should be a HTTP POST to https://graph.facebook.com/me/photos with the params source (the photo to upload), message (a description of the photo) and access_token (the authentication token you need to post photos).

To make posts with python, take a look at httplib or the simpler requests library.

share|improve this answer

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.