I want to get all followers ids who don't make their tweets private. What modification needs in the query
var friends = await twitterCtx.Friendship
.Where(f => f.Type == FriendshipType.FollowerIDs
&& f.UserID == twitterUserId.ToString()
&& f.Count == maxFollowersToRetrieve
&& f.Cursor == nextCursor)
.Select(f => f).SingleOrDefaultAsync();