我一直在尝试使用 PHP 在 cloundant 上使用 Curl 示例。但是,我尝试的任何方法都不起作用。我想做的只是使用 PHP 在 cloundant 上读取、写入、搜索数据。但是,对于初学者来说,似乎没有一种简单的方法可以做到这一点。
代码在这里:
//Get DB's
$returned_content = get_data('https://**InstanceName**:**Password**@**InstanceName**.cloudant.com/_all_dbs');
function get_data($url)
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
我得到的错误是:
{"error":"unauthorized","reason":"Name or password is incorrect"}