I'm having problems to find a simple python twitter oauth example wich show how to post a user status on Twitter. Can you help me?
|
Take a look on tweepy: http://code.google.com/p/tweepy/ |
|||
|
|
|
Here's an example that will get you authed with Twitter using rauth. After that point all you'd have to do to update the authenticated user's status is:
(You only need to care about the code up until you retrieve your authenticated session object, i.e. line 20.) Hope this helps! Edit You will need to get your own consumer_key and consumer_secret for this to work because the rauth demo app does not have write permissions, for obvious reasons. So you'll end up with this response if you try to run the modified script without updating the credentials:
Ensure your application is allowed to write and it should work as expected. |
|||||||
|
|
Have you checked out http://github.com/simplegeo/python-oauth2 ? |
|||
|
|
|
Matthew A. Russell has written an excellent book on this, Mining the social web. Take a look at his excample source for OAuth to twitter. The code is available here, and i recommend his book also, covering not only twitter, but facebook and linkedin aswell. The code is found here: OAuth to twitter and collect friends id's Good Luck |
|||
|
|
|
Here is a simple twitter oauth example I wrote as a blog sometime ago. Hope this helps. |
|||||
|
|
If you're refering to http://code.google.com/p/python-twitter/ .. On that page it is documented as
That works. Ofcourse, your consumer key should never be human-readable in your application. But it would work even if it was. *-pike |
|||
|
|
|
I've written an extremely simple twitter client (which is just for tweeting). The source isn't the cleanest around, but the entire thing (including UI) is under 200 lines, so you should be able to extract anything you need from it: |
|||||
|