For my customer connector I use Oauth 2.0 authentication type with Azure Active Directory as an identity provider.
By default, token is sent to my application in "Authorization" header. However, my app requires another HTTP header name for a token value. How can I change the name of the header, in which token is sent?
I.e currently custom connector is sending: "Authorization": "Bearer token_value"
What I want: "My-custom-name": "Bearer token_value"
I know that this parameter name is customizable in Api Key based authentication method, but I want to stick to Oauth 2.0 authentication type.