1

I am developing android application and want to use twitter log in and import contact list from twitter. i am using twitter4j library and i can log into twitter via android app.i want to know how to import contact list from .

4

1 に答える 1

1

You will have all the followers Ids from below api,

https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=patel

And than you can get info of all that followers from this api,

https://api.twitter.com/1/users/lookup.json?user_id=401702563,1013369934,....

But, these apis will be deprecated by Twitter from March,2013. Rather this, You can try Twitter api version 1.1.

Refer this link for that.

于 2013-01-07T06:57:08.747 に答える