如何获取经过身份验证的用户的列表和用户关注的列表
问问题
1223 次
1 回答
2
这应该有效:
var service = new TwitterService();
service.AuthenticateWith(<your consumerKey>, <your consumerSecret>, <your token>, <your tokensecret>);
var listsUsersLists = service.ListListsFor(listOwnerScreenName);
var listsUserIsIn = service.ListListMembershipsFor(listOwnerScreenName);
var subscribedToLists = service.ListListSubscriptionsFor(subscriberName);
只要经过身份验证的用户名与您尝试返回的列表的名称相同,私人列表也将包括在内。
于 2010-07-01T08:41:14.713 回答