Using .NET 8 Identity Endpoints Cookie to authorize another application
I am working on creating an identity microservice using the .NET Identity platform and the new Identity API endpoints. I have 3 separate applications that I am using for testing of the service: An identity api that validates user credentials and creates an authorization cookie, a client razor pages application that sends a post request to my Identity API and should receive the cookie to authenticate future requests, and a test API to serve as a dummy microservice. The Test API should be authenticated by the Identity API cookie.