---
title: "How to get all followers from ListFollowers() method of TweetSharp Library ?"  
description: "How to get all followers from ListFollowers() method of TweetSharp Library ?"  
author: "Anonymous User"  
published: 2013-09-03  
updated: 2013-09-03  
canonical: https://www.mindstick.com/forum/1418/how-to-get-all-followers-from-listfollowers-method-of-tweetsharp-library  
category: "twitter api"  
tags: ["twitter api"]  
reading_time: 1 minute  

---

# How to get all followers from ListFollowers() method of TweetSharp Library ?

I am developing a [demo](https://www.mindstick.com/forum/157370/how-to-swap-neighbor-characters-in-string-e-g-string-demo-would-be-edom) [application](https://www.mindstick.com/articles/12824/calculator-application-in-android) using TweetSharp [Library](https://www.mindstick.com/forum/34615/software-framework-vs-library) and i want all followers of my users.

I'm using ListFollowers() [method](https://www.mindstick.com/forum/166/webservice-method) of TweetSharp library but it gives only 20 followers.

Help please.

Thanks in advance.

## Replies

### Reply by Sumit Kesarwani

Hi Chintoo,\

You have to use NextCursor parameter in ListFollowers() method like this:

var followers = service.ListFollowers(new ListFollowersOptions { Cursor = -1});

```
while
(followers.NextCursor != null){followers= service.ListFollowers(new ListFollowersOptions { followers.NextCursor });//yourcode here.}
```

Hope this will solve your problem.


---

Original Source: https://www.mindstick.com/forum/1418/how-to-get-all-followers-from-listfollowers-method-of-tweetsharp-library

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
