Twitter API with urllib2 in python

Posted by Dirk Nachbar on Stack Overflow See other posts from Stack Overflow or by Dirk Nachbar
Published on 2010-05-14T11:07:56Z Indexed on 2010/05/14 11:14 UTC
Read the original article Hit count: 216

Filed under:
|

I want to use the Twitter API in Python to lookup user ids from name using the lookup method. I have done similar requests simply using

response = urllib2.urlopen('http://search.twitter.com...') 

but for this one I need authentication. I don't think I can do it through the Google python twitter API because it doesn't have the lookup method. Any ideas how can I can auth with urllib2??

© Stack Overflow or respective owner

Related posts about python

Related posts about twitter