I want to retrieve user info after authentication with Twitter. For this purpose I'm using LINQ to Twitter library. It's possible to do with this code:
var usersResponse =
(from user in context.User
where user.Type == UserType.Lookup &&
user.ScreenName == "MRade90"
select user).ToList();
var users =
(from user in usersResponse
select new User
{
Name = user.Identifier.ScreenName,
StatusText = user.Status.Text,
PictureUrl = new Uri(user.ProfileImageUrl)
}).FirstOrDefault();
But this is hardcoded with ScreenName set to MRade90. Is it possible to do the same thing for currently authenticated user?