I developed a web system using ASP.NET MVC 4 and I have to integrate using the .NET Web API and the Windows Forms application.
So far, everything was fine, but now I need to authenticate users using the Windows Forms application, and this application will be open on the Internet.
My application already contains users who are registered in the database and are currently authenticated using the Authorize component of ASP.NET MVC.
To use data through the client (Windows Forms application), I currently use the ASP.NET Web Client API library.
How can I complete this task safely? Anyone have any suggestions?
source share