4
I have the following applications . Net:
- Web Application with Forms Authentication (I’m not using MVC, I use Backbone.js to call the REST API)
- Web API REST application sharing the same Forms Authenticaion used in application 1.
I am using the same machineKey in both projects so that the cookie is unique in both. reference
The single cookie settings in both applications seem to be working (I’m not sure), but how do I get the cookie in the Web API application?
The scenario is already as you described it. What I need is to know how to get the cookie via code in the Web API application.
– Arthur Menezes