Я новичок, чтобы свернуться и запросить материал, и в настоящее время я пытаюсь получить некоторый контент с сайта, используя Unirest Request, но у меня возникла проблема.(Я использую cakePHP 2.9.5, если это имеет значение)
Вот мой запрос:
public function getsuggestions($word, $someData) {
if(!empty($word) && $word != '') {
$data = $this->find('all', array(
'conditions' => array('Keyword.mot_saisi' => $word)
));
if(!empty($data)) {
$motcles = split(",",$data['0']['Keyword']['resultat'],11);
$motcles['10'] = $word;
return $motcles;
}
else { //We don't have the word in DB yet
$country = $someData['Site']['pays'];
$language = $someData['Site']['langue'];
$url = 'https://ciokan-keyword-suggestion-v1.p.mashape.com/api/keyword/suggest/';
$key = 'AKey'; //Can't share this
require_once 'vendors\autoload.php';
require_once 'vendors\mashape\unirest-php\src\Unirest.php';
Unirest\Request::verifyPeer(false);
$content = Unirest\Request::post($url,
array(
"X-Mashape-Key" => $key,
"Content-Type" => "application/x-www-form-urlencoded",
"Accept" => "application/json"
),
array(
"country" => $country,
"keyword" => $word,
"language" => $language,
"source" => "google"
)
);
if(!empty($content)) {
debug($content); //Here is what is showing me an error
$decoded = json_decode($content,true);
debug($decoded);
$listWords = $decoded['results']['0'];
for ($i=1; $i < $decoded['total']['0']; $i++) {
$listWords = $listWords.','.$decoded['results'][$i];
}
//Adding the answer in the DB
$data = array(
'id' => '',
'mot_saisi' => $word,
'resultat' => $listWords
);
if($this->save($data)) {
echo "Saved successfully";
$listWordsSplitted = split(",",$listWords,11);
$listWordsSplitted['10'] = $word;
return $listWordsSplitted;
}
else {
echo "Saving failed";
}
}
}
//curl_close($ch);
}
}
И вот ошибка, которую я получаю в своем браузере при отображении $ содержимого,переменная, получающая ответ на запрос Unirest:
object(Unirest\Response) {
code => (int) 403
raw_body => '{"message":"Invalid API"}'
body => object(stdClass) {
message => 'Invalid API'
}
headers => array(
(int) 0 => 'HTTP/1.1 403 Forbidden',
'Content-Type' => 'application/json',
'Date' => 'Tue, 22 May 2018 06:58:21 GMT',
'Server' => 'Mashape/5.0.6',
'X-Mashape-Proxy-Response' => 'true',
'Content-Length' => '25',
'Connection' => 'keep-alive'
)
}
Я не мог найти конкретный ответ для этого нигде.Что это значит ?Есть ли способ решить эту проблему?