I am surely missing a concept here, sorry in advance for the question…
I was using the bearer token before and had an HTTP interceptor to pass it.
To be more secure, I decided to use the Secure HttpOnly and have my JWT set with
UseTokenCookie = true.
When I authenticate, I can see my ss-tok in the auth response headers.
I get a 401 on all my secured services now and I guess it is because the cookie is not set but I was under the impression it would be added automatically in all subsequent requests…
I do not see any cookie in the request headers and/or in the Chrome-Application-Cookies
I am using an Angular v13 on same domain as the API.
What am I missing?