2

执行我的糟糕英语。

我是 mongolab 的新手。我想知道如何通过 php 中的 curl 调用 mongolad rest api。

我不想使用 mongodb 驱动程序。

提前致谢。

4

1 回答 1

0

试试这个(用你的 api 密钥形式 MongoLab 替换 myApiKey):

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.mongolab.com/api/1/databases?apiKey=myAPIKey");
curl_setopt($ch, CURLOPT_USERAGENT, "MongolabBot/1.0");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
于 2013-04-04T04:22:54.507 回答