I am learning Azure API Management and am seeing different response headers between Azure Portal, Developer Portal and Postman.
I'm doing an HTTP Get on this endpoint: https://secondattempt.azure-api.net/speakers
With https://conferenceapi.azurewebsites.net/ as the web service URL.
I have compared them here:
Azure Portal:
- Cache-Control
- Pragma
- Transfer-Encoding
- Content-Type
- Expires
- Set-Cookie (not present)
- Date
- Op-Apim-Trace-Location
- Vary
Developer Portal:
- Cache-Control
- Pragma
- Transfer-Encoding
- Content-Type
- Expires
- Set-Cookie
- Date
- Ocp-Apim-Trace-Location
- Vary (not present)
Postman:
- Cache-Control
- Pragma
- Transfer-Encoding
- Content-Type
- Expires
- Set-Cookie
- Date
- Ocp-Apim-Trace-Location (not present)
- Vary (not present)
And here are what they actually look like in the UI:
Why are some headers present in some environments but not others?
Also, why are the headers appearing in different orders?



