Hello. I’m trying to execute an OAuth2 interactive request from Postman using the Advanced feature and adding a custom header. Per this except from the documentation, I should be able to add one:
Auth Request , Token Request , and Refresh Request - Define any custom parameters you want to send with auth requests, token requests, or refresh requests. For each key-value pair you define, select an option to send the parameter in the request body, request URL, or request headers.
However, I don’t get the option to specify how to send the auth request. By default, it’s sending the KVP in the query string. How do I get this to be sent via a custom header instead? Basically, I need to be able to send a custom JWT using Demonstrated Proof of Possession (DPoP) which I can’t do using a query string per RFC 9449. Is there some way to do this using a pre-request script instead? Thanks in advance for your help.