Hi All,
Does anyone know how to use the JSON No Code (or any of the JSON connectors, really) to do basic authentication via a client id and secret where the client id/secret are base64 encoded?
Based on the API documentation, I need to pass the following header where the client id:secret string is base64 encoded.
Authorization: Basic <client id:secret>
So what I did was take the client id:secret string, and ran it through base64encode.org so I ended up with the following:
However, when I try to get a preview, I get the following error:
When I do my own manual curl request via command line, I get back data. So I'm not sure if I'm leveraging the JSON connector correctly. Any help would be greatly appreciated.