Is there a way to include multiple headers for API Key authorisation?
This service I’m using requires this:
Use your Client id and API token values to access the API. Pass them via X-Auth-Token and X-Auth-Id headers respectively.
…but the Authorization interface for a Collection interface only allows one key/value pair.
I could add the second header to each request, and use a variable, but …feels wrong.
Am I missing something?
Thanks!