CartoDB - SQL API - Post 请求 php

CartoDB - SQL API - Post request with php

在我的应用程序中,我想用我的 php-脚本向我的 cartodb-table 发送少量数据。 我想用SQL-API。我的应用程序以如下形式解析数据:

https://{account}.cartodb.com/api/v2/sql?q=INSERT INTO test_table (column_name, column_name_2, the_geom) VALUES ('this is a string', 11, ST_SetSRID(ST_Point(-110, 43),4326))&api_key={Your API key}

我尝试了几个功能 http_get, file_get_contents, http_request 但没有将数据传递到我的帐户。当我 copy/paste 放在 URL 并在浏览器中打开时,所有内容都已添加。

什么是正确的函数?有这么多不同的... PHP-HTTP-Functions

编辑

使用 this solution 中的代码,当我打印出响应时出现此错误:

{"error":["syntax error at end of input"]}

在浏览器中我得到这个:

{"rows":[],"time":0.038,"fields":{},"total_rows":1}

我现在的请求代码:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $fullurl);
// Set so curl_exec returns the result instead of outputting it.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Get the response and close the channel.
$response = curl_exec($ch);
curl_close($ch);
print($response);

找到结果:CURLOPT_POST => 1有效!

$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => "https://".$cartodb_key.".cartodb.com/api/v2/sql",
CURLOPT_USERAGENT => 'Sample cURL Request',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
    api_key => $api_key,
    q => "INSERT INTO spot (".implode (", ", array_keys($data)).") VALUES (".implode (", ", $data).")"
  )
));
$response = curl_exec($ch);
curl_close($ch);