0

嗨,我在向我的 API发布JSON数组时遇到问题,cURL

我在下面有这个cURL帖子的代码:

$data_string = stripslashes($JSONData);

$ch = curl_init('http://api.webadress.com');                                                                      
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(  
    'Accept: application/json',                                                                                                                                                        
    'Content-Type: application/json',                                                                                
    'Content-Length: ' . strlen($data_string))                                                                       
);                                                                                                                   

$result = curl_exec($ch);

它不会将任何内容存储/发布到 API 端,并且 $results 没有返回正确,代码有什么问题?

有点来自JSON

{
"name": "test",
"type_id": "1",
"css": "#fb-iframe{}#fb-beforelike{}#fb-beforelike-blur{}",
"json": [
    {
        "Canvas": [
            {
                "Settings": {
                    "Page": {
                        "campaignName": "test"
                    }
                },
                "QuizModule": {
                    "Motivation": [],
                    "Questions": [],
                    "Submit_Fields": [
                        {
                            "label": "Name",
                            "name": "txtName",
                            "value": true
                        }
                    ]
                }
            }
        ]
    }
],
"user_id": "123"
}
4

2 回答 2

1

可能您$data_string不是field=value成对格式,因此在您的$_POST全局中没有任何内容被解析。

由于您想从$_POST全局读取:

  1. 你不应该设置content-type
  2. $data_string必须是field=value成对的格式

以下将起作用(我完全省略了标题部分,您不应该设置content-type):

$data_string = stripslashes($JSONData);
$ch = curl_init('http://api.webadress.com');   
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, array('JSONData'=>$data_string));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);

另一方面,如果您想访问已经发送的数据,那么您不应该尝试通读它们,$_POST而是在服务器端使用:

$JSONData = file_get_contents("php://input");
于 2013-08-15T14:12:19.720 回答
0

You need to http_build_query() it.

于 2013-08-15T13:49:19.040 回答