Posted on: 4/10/2014 6:46:16 PM | Views : 433

I have an ASP.NET web site that I am trying to get working with Twitter OAuth using the Microsoft OWin package. I did not use the main ASP.NET project wizard to start the site because I wanted to take advantage of the wizard for a set of HTML5 components (Wijmo). Because of this I had to manually include all the necessary Owin packages and extensions, and copy over the file Startup.cs and the OAuth directory and files from another project that did use the ASP.NET main wizard.
Now I find myself with all the pieces in place for doing Twitter OAuth, but there is something about my configuration that isn't right. When I run the site the OAuth controller is never invoked.
The project I studied to implement Twitter OAuth is the LinqToTwitter MVC demo for ASP.NET. First, I made sure that the ASP.NET session state service was started/running. Then, I ran the MVC demo project and it does bring up the OAuth index view that asks you to authorize th ...

Go to the complete details ...