şimdiye kadar ben bu
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.clashofclans.com/v1/clans?name=%23P8PQ8VL2");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: application/json'));
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'authorization: Api key'
));
$result=curl_exec($ch);
curl_close($ch);
var_dump(json_decode($result, true));
ile geldi php curl -X GET --header "Accept: application/json" --header "authorization: Bearer <API token>" "https://api.clashofclans.com/v1/clans?name=%23P8PQ8VL2"
almaya çalışırken bu php curl kullanarak 1 kez im, şimdiden teşekkürler :)
bu kodda hangi sorunu aldığınızı açıkladım. –
'curl_setopt ($ ch, CURLOPT_HTTPHEADER, dizi (' Accept: application/json ',' yetkilendirme: Bearer ')) ile de deneyin; 'diğer CURLOPT_HTTPHEADER seçeneklerini de kaldırın. –
çıktı olarak NULL aldım ... sanırım Bazı cevapları kaçırdım –