I have a client ID and secret; how do I add this as parameters / headers on zap using the requester function to authenticate to an API.
I have tried converting this to base64 and adding -
Authorization: Basic xxxxxxxx
But I still get invalid client ID and secret.
With Curl directly, I can parse the client ID as -
--header 'client_id:xxxxxxxxxxx'
and this works
Any advice is appreciatted
Thanks.