[twitter-dev] user details

2010-10-06 Thread ashy
Hello All,

I have stored access token of some of the users in my database. Now, I
want to retrieve friends and followers  for these users. How can I
retrieve this info?
Any Ideas?

thanks
ashy

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] user details

2010-10-06 Thread Ross Tweedie
Once you have have authenticated the access tokens, you should be able
to call the API directly to get a list of friends and followers using
URLs such as

http://api.twitter.com/1/followers/ids.json?user_id=12345

and

http://api.twitter.com/1/friends/ids.json?user_id=12345


There is more information on the API document at:
http://dev.twitter.com/doc/get/followers/ids
and
http://dev.twitter.com/doc/get/friends/ids


I suppose more detailed information depends upon what language you are
using, such as ruby, php, asp.

I hope this helps.

Regards,

Ross t



On 6 October 2010 12:56, ashy ashwinmo...@gmail.com wrote:
 Hello All,

 I have stored access token of some of the users in my database. Now, I
 want to retrieve friends and followers  for these users. How can I
 retrieve this info?
 Any Ideas?

 thanks
    ashy

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] user details

2010-10-06 Thread ashwin morey
Hi All,

I have a python file and I am running it through command line. But it keeps
giving error here

CONSUMER = oauth.OAuthConsumer(CONSUMER_KEY, CONSUMER_SECRET)
AttributeError: 'module' object has no attribute 'OAuthConsumer'

whereas it works when trying to run it through web application.

thanks
ashy

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk