PHP : Fonction pour CURL (avec authentification Bearer si besoin)
Curl php avec authentification Bearer au besoin function callAPI($method, $url, $data ,$sessionIdToPut ){ $curl = curl_init(); switch ($method){ case « POST »: curl_setopt($curl, CURLOPT_POST, 1); if ($data)… Lire la suite »PHP : Fonction pour CURL (avec authentification Bearer si besoin)