-6
ich https://apptweak.io api bin mit schreiben, sie PHP Beispiel in ihrem Code Beispiel mir nicht erwähnt ...Wie Locken api Beispiel in PHP curl
bitte sagen, wie in Curl-API Beispiel zu verstehen und schreiben PHP curl
hier einfach "appteak.com" curl Beispiel
curl -G https://api.apptweak.com/ios/applications/284993459/informations.json \
-d country=us \
-d language=en \
-d device=iphone \
-H "X-Apptweak-Key: my_api_key"
Hier ist ein weiteres Beispiel
$ curl -H "X-Apptweak-Key: my_api_key" \
https://api.apptweak.com/android/applications/com.facebook.katana.json?country=be&language=nl
Wie schreibe ich diese Curl in PHP?
Ich habe dies in PHP, nach Google, aber es funktioniert nicht für mich.
// Get cURL resource
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'https://api.apptweak.com/android/applications/com.facebook.katana.json?country=be&language=nl',
// CURLOPT_USERAGENT => 'Codular Sample cURL Request',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
'X-Apptweak-Key' => "my_api_key",
)
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
var_dump($resp); //return false
sind Sie sicher, dass Sie übergeben Ihre API-Schlüssel? – KyleK
-H ist für Header. Sie sollten 'CURLOPT_HTTPHEADER => array ('X-Apptweak-Key', 'Ihr Schlüssel')' –
verwenden. Sie sollten CURLOPT_POST => 1 entfernen, da es sich um eine GET-Anfrage handelt –