如何从谷歌自定义搜索Api中获得json响应



实际上我想从谷歌上搜索问题及其答案例如

问题

占星术的定义是什么。回答

对天体运动和相对位置的研究,被认为对人类事务和自然世界有影响。

就像我想从这个api是怎么可能的

 $search_query = $this->input->post('search');
    $url ="https://www.googleapis.com/customsearch/v1?key=AIzaSyD7Ho22AiuqaieQmg1GyMP9HxvID0V0VWg&cx=003432080158696714251:n4rbif5gizk&q='$search_query'";

这是一个示例代码。

$json = file_get_contents($url);
$results = json_decode($json);
if ($results->searchInformation->totalResults) {
    $resutItems = $results->items;
    // do whatever with the result
}

相关内容

  • 没有找到相关文章

最新更新