Laravel + GuzzleHTTP 没有响应数据?

Posted

技术标签:

【中文标题】Laravel + GuzzleHTTP 没有响应数据?【英文标题】:Laravel + GuzzleHTTP no response data? 【发布时间】:2017-06-05 10:28:28 【问题描述】:

我正在使用 guzzle 查询我的 API。

$client = new Client();
        $response = $client->post('xxxxxx',
            array(
                'headers' => array('Content-Type'=>'application/json'),
                'json'=> array(
                    "type" => 0,
                    [...]
                )
            )
        );

        //$response = json_decode($response);

        dd($response->getBody());

这应该给我这样的输出:


  "returnCode": 0,
  "success": true

但我得到了别的东西。

Stream #230 ▼
  -stream: stream resource @12 ▼
    wrapper_type: "php"
    stream_type: "TEMP"
    mode: "w+b"
    unread_bytes: 0
    seekable: true
    uri: "php://temp"
    options: []
  
  -size: null
  -seekable: true
  -readable: true
  -writable: true
  -uri: "php://temp"
  -customMetadata: []

谁能帮助我或告诉我我做错了什么?我想发送原始帖子数据并在之后获取原始帖子数据然后我想保存(例如在数据库中)。

【问题讨论】:

【参考方案1】:
getBody()

返回一个流接口。您想获取该流的内容,因此:

$response->getBody()->getContents();

就是你要找的东西

注意

根据文档,您还可以将流接口转换为字符串,但我得到了不同的结果。 getContents() 总是做它需要做的事情,所以这是我的解决方案。

【讨论】:

这个完美,它应该如何工作。唯一让我困扰的是,它将 json 对象作为字符串返回给我。 ""returnCode":0,"success":true"。我可以以某种方式转换吗? 如果你的意思是你希望你的 JSON 是一个字符串,它已经是。如果您想将该字符串设为 php 对象,只需执行 json_decode($response->getBody()->getContents())

以上是关于Laravel + GuzzleHTTP 没有响应数据?的主要内容,如果未能解决你的问题,请参考以下文章

GuzzleHttp Laravel - 无法解析主机:myapplication.dev

在 laravel 中使用 GuzzleHttp 发送原始空 json

Laravel使用guzzlehttp

laravel 类 'GuzzleHttp\Client' 未找到

ovh/ovh 需要 guzzlehttp^6.0 而 therobfonz/laravel-mandrill-driver 需要 guzzlehttp^7.0:有啥解决方案吗?

laravel/lumen-installer 安装失败:guzzlehttp/guzzle 锁定在 6.3.0