I'm currently trying to replicate a https request with the following headers.
The authentication is based on a Session Cookie.
However, there is also a header field called :authority
,
which I'm not able to replicate in Postman.
Also, couldn't I find any solution for that problem
or what exactly the :authority
header means on the Internet.
This header seems to be required, as I'm getting a 400 error code back
as soon as I send my replicated request.
I've proxied the request sent from Postman and can confirm that the only difference at the first glance is the missing :authority
header.
Thanks ^^
Alright, taking a closer look at the
Raw
Request, I noticed that the actual header is calledHost
and is mapped in the UI to:autority
. Now its working. cheers