我有以下json字符串http://pastebin.com/wnkiLqvP,我试图将其发布到betaface API。帖子是通过cURL用PHP完成的,发布帖子的函数是:
function bcall_endpoint($endpoint,$json_params){
//Init CURL
$ch = curl_init($endpoint);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_POST, 1 );
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json_params);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
return $result;
}
此外,pastebin文件中的json字符串由以下代码生成:
$beta = array(
'api_key'=>'d45fd466-51e2-4701-8da8-04351c872236',
'api_secret'=>'171e8465-f548-401d-b63b-caf0dc28df5f',
'imagefile_data'=>$base64,
'detection_flags'=>'cropface,recognition,propoints,classifiers,extended'
);
$beta = json_encode($beta);
其中$ base64是文件的base64字符串。 base64字符串的创建方式如下:
$file = file_get_contents($_FILES['file']['tmp_name']);
$base64 = base64_encode($file);
API端点位于此处http://www.betafaceapi.com/service_json.svc/UploadNewImage_File,此版本的API与JSON一起使用。当我尝试将所有内容发送到端点时,我应该回复一个响应。 Rathar比回应,我在做完所有参数的cURL后实际得到以下内容:
HEADERS
Access-Control-Allow-Origin: *
Cache-Control: private
Content-Length: 1110
Content-Type: text/html
Date: Wed, 22 Jan 2014 07:55:32 GMT
Server: Microsoft-IIS/7.5
X-Aspnet-Version: 4.0.30319
X-Powered-By: ASP.NET
X-Powered-By-Plesk: PleskWin
BODY view raw
<html version="-//W3C//DTD XHTML 2.0//EN" xml:lang="en" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<HEAD>
<TITLE>Request Error</TITLE>
</HEAD>
<BODY>
<DIV id="content">
<P class="heading1">
<B>Error Status Code:</B> 'InternalServerError'
</P>
<P>
<B>Details: </B>There was an error deserializing the object of type BetafaceWebService.ImageRequestBinary. End element 'imagefile_data' from namespace '' expected. Found text '/'.
</P>
<!-- Padding xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-->
</DIV>
</BODY>
</html>
有人可以指出我为什么会收到此错误:反序列化BetafaceWebService.ImageRequestBinary类型的对象时出错。结束元素&#39; imagefile_data&#39;来自命名空间&#39;&#39;预期。找到文字&#39; /&#39;。 ?
似乎如果我上传文件,在API端点上运行POST,则PHP响应为NULL。但是,如果我查看页面的来源,再次点击刷新,然后重新发送表单提交,我会从API获得propper响应。
有人能让我知道这里有什么问题吗?自昨天以来,我一直在努力理解这一点,并且无法找到解决方案。
更新 使用jsonlint和PHP生成的json字符串后,我得到以下结果:
Parse error on line 4:
... "imagefile_data": "\/9j\/4AAQSkZJRgABA
-----------------------^
Expecting 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '['
json字符串的大小是否有限制?
答案 0 :(得分:0)
“/”只是“/”的转义序列,“\”不是有效的base64字符。尝试从base64编码的图像数据中删除所有“\”。
答案 1 :(得分:0)
有点晚了,但是,尝试添加Content-Length标头