I have a new MVC6 solution that uses ASP.Net Authentication and OAuth.
For my Account controller, I am able to retrieve the logged in Context.User.
However, I am not able to retrieve the same values when using another controller. Context.User.Identity fields all have null values.
How do I enable my other controller to retrieve the logged in user?
UPDATE: As mentioned in the comment trail in an answer below, the problem was in the client, not in the server, as the client was not sending the proper credentials for ASP.Net Authentication to identify.