Support for Friends and Followers list endpoints

"Two new methods in API v1.1 provide simplified access to user friend & follower data: https://dev.twitter.com/docs/api/1.1/get/followers/listhttps://dev.twitter.com/docs/api/1.1/get/friends/list … ^TS" - @TwitterAPI
This commit is contained in:
Mike Helmick 2012-11-29 15:32:07 -05:00
parent 825026099a
commit 7d82206614

View file

@ -62,6 +62,14 @@ api_table = {
'url': '/followers/ids.json',
'method': 'GET',
},
'getFriendsList': {
'url': '/friends/list.json',
'method': 'GET',
},
'getFollowersList': {
'url': '/followers/list.json',
'method': 'GET',
},
'getIncomingFriendshipIDs': {
'url': '/friendships/incoming.json',
'method': 'GET',