I am trying to write a connector in GDS for a web service API. The API authentication method uses 2 KEYS (passed in the header): X-App-Key
and X-User-Key
A 2-key auth flow doesn't fit into the 5 authentication options available in my .gs
connector script. Do I implement a custom authentication method (don't see how) or modify USER_PASS
or USER_TOKEN
to accept the 2 keys?
Update: I am starting in on connecting another service and this one uses API_TOKEN
and API_SECRET
. Again, I don't see which of the 5 authentication types fit.
I assume this is a common issue being that there are so many different API's out there...