Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/json/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php “错误”;试图将请求正文解析为JSON时无法读取;_Php_Json - Fatal编程技术网

Php “错误”;试图将请求正文解析为JSON时无法读取;

Php “错误”;试图将请求正文解析为JSON时无法读取;,php,json,Php,Json,我们的开发人员在使用API(Brightpearl)时遇到了一个小问题,在尝试运行下面的脚本时,收到了一条“请求主体在试图将其解析为JSON时无法读取”的消息。有人对这个可能的问题有什么想法吗?非常感谢 <?php define ("DB_HOST","localhost"); define ("DB_USER","busi6292_REMOVED"); define ("DB_PASSWORD","REMOVED"); define ("DB_DATABASE","busi6292_RE

我们的开发人员在使用API(Brightpearl)时遇到了一个小问题,在尝试运行下面的脚本时,收到了一条“请求主体在试图将其解析为JSON时无法读取”的消息。有人对这个可能的问题有什么想法吗?非常感谢

<?php
define ("DB_HOST","localhost");
define ("DB_USER","busi6292_REMOVED");
define ("DB_PASSWORD","REMOVED");
define ("DB_DATABASE","busi6292_REMOVED");

$link = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD)
or die ('I cannot connect to the database because: ' . @mysql_error());
@mysql_select_db (DB_DATABASE);
mysql_set_charset('utf8',$link);

// Brightperl Data Access Start

    $authenticationDetails = array(
    'apiAccountCredentials' => array(
        'emailAddress' => 'REMOVED',
        'password'     => 'REMOVED',
    ),
    );
    $encodedAuthenticationDetails = json_encode($authenticationDetails);
    $authenticationUrl = 'https://ws-eu1.brightpearl.com/REMOVED/authorise';

    //$cresponse_token=getdata($url,$authenticationDetails);

    $ch = curl_init(); 

    $headers = array('Content-Type: application/json');
    curl_setopt($ch, CURLOPT_URL, $authenticationUrl);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($authenticationDetails));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    $response = curl_exec($ch);
    if (false === $response) {
        echo 'Request unsuccessful' . PHP_EOL;
        curl_close($ch);
        exit(1);
    }
    $responseCode = (int) curl_getinfo($ch, CURLINFO_HTTP_CODE);
    $responseBody = json_decode($response);
    curl_close($ch);

    $authorisationToken = $responseBody->response;

// End



$sql = "select * from mail where InvoiceDate ='".date('Y-m-d')."'";
$query = mysql_query($sql);

while($sql_array = mysql_fetch_array($query))
{

    //print_r($sql_array);

    //echo $authorisationToken; exit;


    // Brigtperl API Access for the Orders has been shipped Start

    $ShippingGoodsoutURL = 'https://ws-eu1.brightpearl.com/2.0.0/REMOVED/warehouse-service/goods-note/goods-out/'.$sql_array['OrderNo'];

    $headers = array(
    "brightpearl-auth: {$authorisationToken}",
    'Content-Type: application/json;charset=UTF-8',
    'X-HTTP-Method-Override: PUT',
    );
    $newShippingWarehouseDetails = array(
    "priority" => false,
    "shipping" => 
    array(
            "reference" =>'"'.$sql_array['InvoiceNumber'].'"',
            ),
    );

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $ShippingGoodsoutURL);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
    curl_setopt($ch, CURLOPT_PUT, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    //curl_setopt($ch, CURLOPT_POST, true);
    //curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($newShippingWarehouseDetails));


    curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($newShippingWarehouseDetails));

    $GoodsoutreShippingResponse = curl_exec($ch);
    curl_close($ch);

    print_r($GoodsoutreShippingResponse);

    //exit;

    // End


}



?>

我不能完全确定,但我相信您的问题在于第二个
curl
请求。您正在传递一个头->
内容类型:application/json;charset=UTF-8
CURLOPT_POSTFIELDS,http_build_query($newShippingWarehouseDetails))

试试这个:

更改此选项:

对此:


如果数据正确地编码为JSON,我认为您不应该有问题。

为什么要执行
@mysql\u error()
?删除那些
@
。您需要处理错误,而不仅仅是忽略它们。不完全确定但不应该这样做->
curl\u setopt($ch,CURLOPT\u POSTFIELDS,http\u build\u query($newShippingWarehouseDetails))
使用
json\u encode
而不是
http\u build\u query
。您正在传递一个
内容类型:application/json;charset=UTF-8
键入标头,但将数据作为编码的url字符串传递。感谢您的提供,但不幸的是,没有运气进行此更改!
CURLOPT_POSTFIELDS,http_build_query($newShippingWarehouseDetails));
CURLOPT_POSTFIELDS, json_encode($newShippingWarehouseDetails));