I was wondering how to set an HTTPHEADER in Objective C.
In PHP, my code looks like :
$headers = array(
'Sign: '.$sign,
'Key: '.$key,
);
//I send it with curl
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
I tried a few things but I'm not able to create the array that is made by PHP so my request get refused by the server.
Does anyone have an idea ?