データをフォーマットして Web API に投稿しようとしています。私には正しいように見えますが、エラーが発生しています。
Error: "result":"failed","error_message":org.json.JSONException: JSONObject["leads"] is not a JSONArray.}
データのフォーマット方法に関するサンプルは次のとおりです。
{"leadtype":"259","leads":[{"first_name":"John", "last_name":"Anderson",
"email":"john.anderson@g-pwatersa.com", "company":"GP Waters", "city":"New
York", "state":"New York", "address1":"201 1st St. N.", "country":"United
States"}]}
そして、エコーを使用して結果を確認する方法は次のとおりです。
{"leadtype":"Test","leads":{":first_name":"First",":last_name":"Last",":company":"Company",":email":"myemail@gmail.com",":phone":"8886664455",":city":"Houston",":state":"TX",":zip":"77222",":country":"USA",":source":"Demo"}}
コードは次のとおりです。
$data = array('leadtype'=>$type);
$data['leads'] = array(':first_name'=>$firstname,
':last_name'=>$lastname,
':company'=>$company,
':email'=>$email,
':phone'=>$phone,
':city'=>$city,
':state'=>$state,
':zip'=>$zip,
':country'=>$country,
':source'=>$source);
$data_string = json_encode($data);
echo "<br>".$data_string."<br>";
$ch = curl_init('https://myapi.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(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
echo "<br>".$result."<br>"
を使用したときにJSONArrayではないと言われる理由がわかりませんjson_encode()
。