Ejemplo n.º 1
0
 public static IEnumerable <ITweet> GetLoggedUserTimeLine()
 {
     GetCredentialsFromConfig();
     Authorize();
     return(_userCredentials != null?_loggedUser.GetHomeTimeline(10) : Tweet.GetTweets());
 }