Skip to content

Twitter Lists : Members

linvi edited this page May 19, 2015 · 10 revisions

Overview

Twitter Lists is composed of members. These members are users whose public tweets will be available from the List.

Let's code

Add Members to a List

// You can add users to a list by specifying their id, screen name or by giving an `User` object.
var success = list.AddMember(<user,id,screenName>);

// Here is the static way to add a member to a list
var success = TweetList.AddMemberToList(<list_identifier>, <user,id,screenName>);

When adding multiple members the result is MultiRequestsResult.

Clone this wiki locally