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've started working with the twitter API, and I'd like to know the fastest way to get the authenticated user screen_name.

share|improve this question
are you using any libraries @Kenny ? – Sathya Dec 6 '10 at 14:37
Yes, I'm using oauthtwitter, which uses oauth and simplejson, i think – kenny_knp Dec 6 '10 at 14:44
Actually, I'm trying to complete oauthtwitter lib with more defs and use it with a twitter bot project – kenny_knp Dec 6 '10 at 14:45

2 Answers

up vote 0 down vote accepted

I'm using the twitteroauth (i assume that's what you mean) library in a project atm and if you're retrieving the user information like this:

$user_info = $twitteroauth->get('account/verify_credentials');

You can retrieve the user screen name with: echo $user_info->screen_name;

share|improve this answer

The fastest way is to grab the python-twitter library ( which provides an object and method for just about everything - also note - use the latest sources, don't fetch the zipped files) and use the GetUser method

>>> import twitter
>>> api = twitter.Api(consumer_key=conskey, consumer_secret=conssec, access_token_key=accstkn, >>> access_token_secret=accssec)
>>> usr = api.GetUser(11594372) # passing the user id here
>>> print usr.GetName()
Sathya
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.