Skip to content

Instantly share code, notes, and snippets.

@KiptoonKipkurui
Created March 21, 2020 14:30
Show Gist options
  • Save KiptoonKipkurui/36d123dbcfae3aa16c9fa05d14b77e70 to your computer and use it in GitHub Desktop.
Save KiptoonKipkurui/36d123dbcfae3aa16c9fa05d14b77e70 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
var client = new Client();
var token =client.GetBearerToken().GetAwaiter().GetResult();
var tweets = client.GetUserTimelineJson(token, "@twitterapi", 200, true, false).GetAwaiter().GetResult();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment