Привет, я пытаюсь использовать pushbots api, чтобы получить аналитику моего приложения. Проблема в том, что я не очень хорошо разбираюсь в curl или как ее реализовать.
Надеюсь, кто-то может объяснить мне, как использовать код, который был вставлен ниже.
curl -X GET \ -H "x-pushbots-appid: xxxxxxxxxxxxxxxxxxxxxxx" \ -H "x-pushbots-secret: xxxxxxxxxxxxxxxxxxxxx" \ -H "Content-Type: application/json" \ https://api.pushbots.com/analytics
EDIT: теперь я использую код
<?php $headers = array("Content-Type: application/json","x-pushbots-appid: XXXXXXXXXXXXXX","x-pushbots-secret: XXXXXXXXXXXXXXXXXXXXXX"); $appid = "x-pushbots-appid: XXXXXXXXXXXXXXXXXXXXXXXXX"; $secretid = "x-pushbots-secret: XXXXXXXXXXXXXXXXXXXXXXX"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"api.pushbots.com/analytics"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $appid&$secretid); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //set the headers now curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $output = curl_exec($ch); curl_close ($ch); var_dump($output); ?>
И я получаю эту ошибку сейчас:
string(64) "{"code":"MethodNotAllowedError","message":"POST is not allowed"}"