通过PHP CURL发送数据?

时间:2018-06-22 13:15:46

标签: php curl dashing

我正在尝试将一些数据发送到仪表板应用程序Dashing。为此,您必须以CURL为例。

url -d '{ "auth_token": "YOUR_AUTH_TOKEN", "text": "Hey, Look what I can do!" }' \http://127.0.0.1:3030/widgets/welcome

这将更新小部件

我只是想知道如何通过PHP有效地做到这一点?

这就是我现在拥有的

$url = 'http://127.0.0.1:3030/widgets/welcome';
$fields = array(
            'auth_token' => "YOUR_AUTH_TOKEN",
            'text' => "ssssssssssss"
        );
$fields_string = http_build_query($fields);
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
$result = curl_exec($ch);
echo $result;

//close connection
curl_close($ch);

这不起作用,我将如何发送该字符串?

谢谢

0 个答案:

没有答案