Skip to content

Twitter Lists : Subscribers

linvi edited this page May 19, 2015 · 13 revisions

Overview

Twitter Lists can be used by other Users if their privacy mode is set to Public.

Let's code!

Get User Subscriptions

// From a User Object
var lists = user.GetListsSubscriptions(<maximumNumberOfListsToRetrieve>);

// From static TweetList
var lists = TweetList.GetUserListSubscriptions(<user,id,screenName>, <maximumNumberOfListsToRetrieve>);

Subscribe Logged User to List

To subscribe to a List, a user needs to be logged in. As a result, only LoggedUsers can subscribe to a List.

UnSubscribe Logged User to List

Same as subscribe, you ca

Clone this wiki locally