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);
As long as the authenticated username is the same as the
name of the lists you are trying to return, private lists will be included too.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
This should work:
As long as the authenticated username is the same as the name of the lists you are trying to return, private lists will be included too.