From 526c69bdbae758662172742d08923ba3c1e079d9 Mon Sep 17 00:00:00 2001 From: Andrew Hutchinson Date: Thu, 3 Oct 2019 09:48:34 +0100 Subject: [PATCH 1/2] Update Program.cs --- ConsoleApplication/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ConsoleApplication/Program.cs b/ConsoleApplication/Program.cs index 10350b9..ff471c0 100644 --- a/ConsoleApplication/Program.cs +++ b/ConsoleApplication/Program.cs @@ -6,6 +6,9 @@ namespace ConsoleApplication { + /// + /// Program + /// class Program { static void Main(string[] args) From ce8b5bfb7d180718773217ba3dfdb149953bd7eb Mon Sep 17 00:00:00 2001 From: Andrew Hutchinson Date: Thu, 1 Oct 2020 09:28:19 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 58e7b8a..98efb62 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -#oAuthTwitterWrapper +# oAuthTwitterWrapper This provides a really simple solution to authenticating and wrapping twitter's API calls using the 1.1 API and OAuth. -##Quick installation instructions: +## Quick installation instructions: Run the following nuget command from your project to install the [package] (http://nuget.org/packages/oAuthTwitterWrapper/): @@ -20,7 +20,7 @@ If you would prefer to use serialiazed C# pocos use the following: var json = twit.GetMyTimeline(); var tweets = JsonConvert.DeserializeObject>(json); // Deserialize with Json.NET -#Notes +# Notes Currently it exposes timeline (twitter feed) and search calls, returned as raw json (which can be serialized into c# pocos, examples in the github project). Screen shot below (please note there is no styling applied you have full control over how it is rendered in your application).