我正在尝试使用Curl和PHP来使用Weclapp API。到目前为止,我有以下代码
$ch = curl_init("https://xxx.weclapp.com/webapp/api/v1/contact");
$data = array(
"'lastName' : 'Bar'",
"'firstName' : 'Foo'");
$data_string = json_encode($data);
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(
"AuthenticationToken: xxxxxx",
'Content-Type: application/json')
);
$result = curl_exec($ch);
curl_close ($ch);
不幸的是,结果是{"错误":"数据无效" }
如果我使用以下bash cmd,它可以工作:
curl -H "AuthenticationToken:xxxx" -H "Content-type: application/json" -X POST -d '{"lastName" : "Bar", "firstName" : "Foo"}' https://xxxx.weclapp.com/webapp/api/v1/contact
那么我的PHP代码与bash CMD的区别在哪里?
谢谢!
答案 0 :(得分:2)
错误在于:
$data = array(
"'lastName' : 'Bar'",
"'firstName' : 'Foo'");
这不是有效的php数组格式。将其更改为:
$data = array(
'lastName' => 'Bar',
'firstName' => 'Foo'
);