PHPを介してJSONをPOSTするために次のPHPコードを実装してみました:cURL(SOME FORCE.COM WEBSITEは、POSTするURLを示すタグです):
$url = "<SOME FORCE.COM WEBSITE>";
$data =
'application' =>
array
(
'isTest' => FALSE,
key => value,
key => value,
key => value,
...
)
$ch = curl_init($url);
$data_string = json_encode($data);
curl_setopt($ch, CURLOPT_POST, true);
//Send blindly the json-encoded string.
//The server, IMO, expects the body of the HTTP request to be in JSON
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER,
array
(
'Content-Type:application/json',
'Content-Length: ' . strlen($data_string)
)
);
$result = curl_exec($ch);
curl_close($ch);
print_r($result);
echo '<pre>';
echo $_POST;
$jsonStr = file_get_contents('php://input'); //read the HTTP body.
var_dump($jsonStr);
var_dump(json_decode($jsonStr));
echo '</pre>';
上記の出力は次のとおりです。
"Your TEST POST is correct, please set the isTest (Boolean) attribute on the application to FALSE to actually apply."
Arraystring(0) ""
NULL
OK、上記は、json_encodeを使用してJSONデータを正しくフォーマットしたことを確認し、SOMEFORCE.COMWEBSITEは'isTest'の値がFALSEであることを確認します。ただし、「var_dump($ jsonStr)」または「var_dump(json_decode($ jsonStr))」から何も取得されません。'isTest'をTRUEに設定したため、JSONデータが取得されないと仮定して、その事実を無視し、'isTest'をFALSEに設定することにしましたが、'isTest'をFALSEに設定すると、混乱が生じます。
[{"message":"System.EmailException: SendEmail failed. First exception on row 0; first error: REQUIRED_FIELD_MISSING, Missing body, need at least one of html or plainText: []\n\nClass.careers_RestWebService.sendReceiptEmail: line 165, column 1\nClass.careers_RestWebService.postApplication: line 205, column 1","errorCode":"APEX_ERROR"}]
Arraystring(0) ""
NULL
それでもJSONデータを取得できず、最終的にメールを送信できませんでした。「var_dump($ jsonStr)」または「var_dump(json_decode($ jsonStr))」からは何も送信されないため、この問題はメール本文が空であることが原因であると考えています。JSON POSTを取得するのを手伝ってもらえますか?ヒントや提案などをいただければ幸いです。ありがとうございます。