我正在尝试使用 PHP 发布 JSON 有效负载,但无法使其正常工作。我有以下适用于 Shell 的 CURL 命令以及以下也适用的 Python 代码,但需要 PHP 实现相同的功能。
壳牌上的卷曲:
curl -H "Content-Type: application/json" -X POST -d '{"Content":" <CONTENT OF THE MESSAGE> "}' <URL of the node receiving POST data>
Python:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import requests
headers = {
'Content-type': 'application/json',
}
auth = '<URL>'
line1 = '<CONTENT of message>'
data = '{"Content":"%s"}' % (line1)
response = requests.post(url = auth, headers = headers, data = data)
到目前为止我在 PHP 中所拥有的(不工作):
$data = array("Content" => "<CONTENT of the message>");
$data_string = json_encode($data);
$ch = curl_init('<URL>');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
提前非常感谢任何和所有帮助!
互换的青春
心有法竹