有人曾经使用过CSide API吗? (http://www.cside.pt/UIAPI/)
我不知道问题是什么,可能是我的代码或凭据。
<?php
$api_url = 'http://cside.pt/UIAPI/token';
$client_id = 'xxx';
$client_secret = 'xxx';
$opts = array('http' =>
array(
'method' => 'POST',
'header' => "Authorization: Basic"."\r\n".
base64_encode("$client_id:$client_secret")
)
);
$context = stream_context_create($opts);
$result = file_get_contents($api_url, false, $context);
print_r($result);
?>
我收到此错误
警告:file_get_contents(http://cside.pt/UIAPI/token):无法打开流:HTTP请求失败!在第18行的C:\ xampp \ htdocs \ wetrig \ CI \ api \ test.php
致命错误:超过30秒的最长执行时间 第18行的C:\ xampp \ htdocs \ wetrig \ CI \ api \ test.php
我非常感谢你的帮助。