---
title: "Tweetsharp - Getting lists for authenticated user"  
description: "Tweetsharp - Getting lists for authenticated user"  
author: "Takeshi Okada"  
published: 2013-09-03  
updated: 2013-09-03  
canonical: https://www.mindstick.com/forum/1434/tweetsharp-getting-lists-for-authenticated-user  
category: "twitter api"  
tags: ["twitter api"]  
reading_time: 1 minute  

---

# Tweetsharp - Getting lists for authenticated user

How can i get the [lists](https://www.mindstick.com/articles/126273/books-commonly-found-on-college-reading-lists) for the authenticated [user](https://www.mindstick.com/articles/13001/multi-statement-table-valued-user-defined-function-in-sql-server) &[amp](https://www.mindstick.com/forum/156207/what-is-amp); the lists that user follows

## Replies

### Reply by Sumit Kesarwani

Hi Takeshi,\

This should work:

```
    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.


---

Original Source: https://www.mindstick.com/forum/1434/tweetsharp-getting-lists-for-authenticated-user

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
