我尝试通过PHP实现以下PHP代码到POST JSON: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
好的,上面确认我使用json_encode正确格式化了JSON数据,并且SOME FORCE.COM WEBSITE确认'isTest'的值为FALSE。但是,我没有从“var_dump($ jsonStr)”或“var_dump(json_decode($ jsonStr))”得到任何东西。我决定忽略这个事实并将'isTest'设置为FALSE,假设我没有得到任何JSON数据,因为我将'isTest'设置为TRUE,但是当我将'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吗?我非常感谢任何提示,建议等等。谢谢。
答案 0 :(得分:0)
我自己解决了这个问题。我不确定我是否正确地做了这个,但事实证明我的代码是完美的。我一直在刷新我的网站,从我在哪里发布到一些FORCE.COM网站。我相信管理SOME FORCE.COM网站的人们最终遇到了问题。我所做的一切都没有错。出于某种原因,我得到了一个代码202和一些乱码文本。我很乐意显示输出,但我不想再为了管理我正在发布的SOME FORCE.COM网站的人们而再次发布POST。谢谢你们的帮助。