如何在php中使用curl从API获取值

时间:2015-05-27 08:41:29

标签: php curl

我需要使用curl从API获取数据。根据手册给出的curl命令应该是这样的

curl --user {YOUR_CLIENT_ID}:{YOUR_CLIENT_SECRET} https://www.udemy.com/api-2.0/courses

现在,当在pUTTY中传递此命令时,我得到了响应并且数据显示正确,但是如何在PHP页面中使用它...对cURL来说是安静的,所以任何建议都会对我有所帮助。

提前致谢

1 个答案:

答案 0 :(得分:0)

$ch = curl_init();
// Disable SSL verification
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
// Will return the response, if false it print the response
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Set the url
curl_setopt($ch, CURLOPT_URL,$url);
// Execute
$result=curl_exec($ch);
// Will dump a beauty json <3
$fr=json_decode($result, true);