用PHP访问JSON API

时间:2019-01-19 05:26:44

标签: php api curl

我正在尝试学习如何与JSON API交互。 在文档中,他们给了我一个卷曲的例子:

如果我将其作为命令运行,则可以正常工作,并以json格式提供我的数据。

我以为自己在正确的轨道上:PHP + curl, HTTP POST sample code?

但显然不是,因为我无法弄清楚该命令的-H部分。

curl -H "APIKey:My:ApI;key;" -H "Content-Type:.../json" "https://urlofapp.com/API/GetTransaction" -d "{ 'CustomerID':'12345','EndDate':'2018-12-31','StartDate':'2018-01-01'}" > test.json

试图将结果放入一个数组中,我可以求和并显示该年度的订单总数。

在我上面提供的链接中,我试图以此开始:

// set post fields
$post = [
'CustomerID' => 12345,
'StartDate' => 2018-01-01,
'EndDate'   => 2018-12-31,
];

$ch = curl_init('https://urlofapp.com/API/GetTransaction');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);

// execute!
$response = curl_exec($ch);

// close the connection, release resources used
curl_close($ch);

// do anything you want with your response
var_dump($response);

2 个答案:

答案 0 :(得分:2)

-h命令引用标题。

尝试以下代码,

// Generated by curl-to-PHP: http://incarnate.github.io/curl-to-php/
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'https://urlofapp.com/API/GetTransaction');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{ 'CustomerID':'12345','EndDate':'2018-12-31','StartDate':'2018-01-01'}");
curl_setopt($ch, CURLOPT_POST, 1);

$headers = array();
$headers[] = 'Apikey: My:ApI;key;';
$headers[] = 'Content-Type: application/json';
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
}
curl_close ($ch);

我在下面使用了curl命令将其转换为PHP脚本,

https://incarnate.github.io/curl-to-php/

希望它会有用。

答案 1 :(得分:0)

直接卷翘通常会导致疼痛。有很多库可以帮助简化这样的调用。

以下是一些: