I am trying to update twitter user status from my C # application.
I searched the Internet and found several possibilities, but I am a little confused by the recent (?) Change of the Twitter authentication process. I also found what it seems to be https://stackoverflow.com/a/1361212/..but it just doesn't answer my question because it ultra-specifically restores a piece of code that doesn't work.
I am trying to achieve a REST API, not a search API, which means that I have to perform stronger OAuth authentication.
I reviewed two solutions. The Twitterizer Framework worked fine, but it is an external DLL, and I would rather use the source code. As an example, the code using it is very clear and looks like this:
Twitter twitter = new Twitter("username", "password");
twitter.Status.Update("Hello World!");
I also reviewed the Yedda Twitter library , but this error failed due to what I consider to be an authentication process, while trying to basically use the same code as above (Yedda expects a username and password in the status update itself, but everything else should be the same).
Since I could not find a clear answer on the Internet, I bring it to StackOverflow.
What is the easiest way to get Twitter status updates running in a C # application without an external DLL dependency?
thanks
source
share