Hi. I'm trying to save an API POST Request that gets sent from an external service callback to my app. The docs say The callback is a POST request with just JSON object in body and that i need to authenticate, You need to verify the callback authentication by validating the Authorisation header which is the same value as what you use to make a call to our APIs. base64 encoded client_id and secret as below:...
Heres the Auth header I use when sending a request and how i Auth for that:
This is my first service that i'm integrating into a project and not quite sure how to authenticate this external post request.
I've managed to use a request to the external service and get information back which worked perfectly, but not sure how to get a callback from them with the information.