PHP Curl 连接到 JsonRPCServer 无效的 Json

Posted

技术标签:

【中文标题】PHP Curl 连接到 JsonRPCServer 无效的 Json【英文标题】:PHP Curl connection to JsonRPCServer Invalid Json 【发布时间】:2015-05-27 11:08:30 【问题描述】:

我有用 Java 编写的 Json RPC 服务器,但我没有它的代码。

$headers = array(
    'Content-Type: application/json',
    'Accept: application/json'
);

$url="https://127.0.0.1:9999";

$pemfile = "C:\\openssl\\client.cer";
$keyfile = "C:\\openssl\\client.openssl";

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url); 

$post = array(
            "jsonrpc"   => "2.0",
            "method"    => "generateAddress",
            "id"        => "1");

curl_setopt($ch, CURLOPT_VERBOSE, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 

curl_setopt($ch, CURLOPT_FAILONERROR, 0); 

curl_setopt($ch, CURLOPT_SSLCERT, $pemfile); 
curl_setopt($ch, CURLOPT_SSLCERTTYPE, 'PEM'); 
curl_setopt($ch, CURLOPT_SSLCERTPASSWD, ''); 

curl_setopt($ch, CURLOPT_SSLKEY, $keyfile); 
curl_setopt($ch, CURLOPT_SSLKEYPASSWD, '');

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS,  $post);

$data = curl_exec($ch);
$curl_errno = curl_errno($ch);
$curl_error = curl_error($ch);

print_r($data);

在规范中服务器应该响应:

"id":1,"error":"message":"Internal error","code":-32603,"jsonrpc":"2.0"

但是服务器没有任何响应并且正在记录

invalid request
com.thetransactioncompany.jsonrpc2.JSONRPC2ParseException: Invalid JSON
    at com.thetransactioncompany.jsonrpc2.JSONRPC2Parser.parseJSONObject(JSO
NRPC2Parser.java:201

有没有办法调试它或检查我发送到服务器的内容?

【问题讨论】:

【参考方案1】:

您必须先对数组进行 json 编码 $post = json_encode($post);CURLOPT_POSTFIELDS, json_encode($post)

编辑试试这个:

<?php

$headers = array(
'Content-Type: application/json'
);
$url="https://127.0.0.1:9999";
$post = array(
"jsonrpc"   => "2.0",
"method"    => "generateAddress",
"id"        => "1"
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS,  json_encode($post));

$data = curl_exec($ch);

print_r($data);

【讨论】:

请不要忘记将此问题的最佳答案标记为正确 它没有发送到服务器:POST / HTTP/1.1 主机:127.0.0.1:9999 接受:/ Content-Length: 21 with not encoding 有一些垃圾 还有你为什么使用 FTP 协议?? 我认为您无法将数据发布到 FTP 服务器 它不是 FTP 服务器。它的 JSON RPC 服务器【参考方案2】:

您可以使用curl_getinfo()

在脚本的结尾:

print_r(curl_getinfo($ch));

【讨论】:

【参考方案3】:

您必须对您的帖子数据进行 json 编码。您现在没有发送 json 数据。

$post = json_encode($post);

并在标题中包含内容长度

$headers = array(
  'Content-Type: application/json',
  'Content-Length: ' . strlen($post))              
);

【讨论】:

以上是关于PHP Curl 连接到 JsonRPCServer 无效的 Json的主要内容,如果未能解决你的问题,请参考以下文章

PHP Curl 连接到 JsonRPCServer 无效的 Json

PHP Curl(带有 NSS)在连接到 https 时可能使用 SSLv3 而不是 TLS

无法使用cURL连接到HTTPS站点怎么办

cURL 和 PHP 显示“1”

CURL错误:Recv失败:通过对等方重置连接 - PHP Curl

我正在尝试使用 PHP 连接到 Azure 服务总线队列,但我不断收到此错误