How do you transform a cookie value into a header value in Ocelot
问题 I am using a micro-services architecture in dotnet core. I am putting Ocelot in front as an api-gateway (BFF). My main web application uses cookie auth with the jwt token in the cookie. This is for backwards compatibility. All my new apis use bearer auth. I would like to in Ocelot get the value out of the cookie and insert it into the header. I have seen header values added in the configuration file. This however will need a code implementation due to the dynamic nature. What is the