I have created a custom connector that is connecting to a vendor's API. I have unauthenticated GET methods working, but now am working on some POSTs and am running into an issue with putting "Authorization: Bearer token_value" in the header. Even on the unauthenticated GET calls, I can see in the request header that "Authorization: Bearer some_token_value" is already there. I've tried setting the Header in my POST call, but then I get the error: "Message": "Error from ASE: Bad authorization header scheme".
I can see that the request header has my token_value and so it appears I'm not allowed to set the header that way. What is the right way to send my "Authorization: Bearer token_value" to the API?
Thank you.