我想通过API调用从webinarjam获取数据。但是我不知道如何通过Wordpress中的curl请求传递API凭据。
我必须从网络研讨会API中获取数据,并将其显示在页面上。我有一个有效的webinarjam帐户。
$content_type = "application/json";
$url = "https://webinarjam.genndi.com/api/webinar";
$api_key = "xyz";
$webinar_id = "sdf";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_API_KEY, $api_key);
curl_setopt($ch, CURLOPT_WEBINAR_ID, $webinar_id);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Content-type : $content_type;", 'Accept : application/json'
));
$output = curl_exec($ch);
curl_close($ch);
print_r($output);
我只想知道如何将api凭证传递给网络研讨会API端点。