I am trying to make a GET request in PHP using cURL and here is what the documentation says about my header:
Append an HTTP header called zuluapi using the created signature.
zuluapi <publicKey>:<base 64 encoded signature>
I have the publicKey and signature, I just can't seem to figure out how to attach the header in the way they want. When I try to add the header, like below, I get bad header error.
$headers = [
"zuluapi {$public}:{$signedMessage}"
];