duanqiang3925 2018-01-02 14:17
浏览 526
已采纳

laravel API调用中的Guzzle HTTP不返回预期的响应

I'm attempting a GET request to acquire an email_token with Guzzle HTTP that looks like this:

$email = $customer['attributes']['Email'];

    $client = new Client();
    $res = $client->request('GET', 'https://www.example.com/apps/api/Services/Email/Opting', [
        'email' => $email
    ]);
    dd($res->getBody());

The response is returning 200/OK, but I'm not getting the email_token as expected. The sparse API docs I'm working off give a very similar example and state the expected response's content should look something like this:

{
    "email": "test@example.com",
    "marketing": true,
    "promotional": true,
    "news": true,
    "feedback": true,
    "account_related": true,
    "token": "eyJpdiI6Ik9tNlFwbEorbjNnK1FsNnFZb1ZtaFE9PSIsInZhbHVlIjoibGNheWpDR0Z6eWpcL1VCbjdsUXZCS0lzRURBZTIzMVc5ZXRTamQrd1dQTFE9IiwibWFjIjoiYTEwYTM2ODU0MmQzMTY5NGIwNWFhOWFjM2ZiZTBkMzkzOWMyY2VkYTMzNjk5ZDYyOTE0OGY2YjBhNGNkYjk4NyJ9"
}

Once I get the token, I then need to make a POST with a couple more requirements (one being the email_token) in order to automate a customer's ability to opt out of the mailing list. Any thoughts on why my response is coming back like this?

Screenshot of dd($res);

Screenshot of dd($res->getBody());

  • 写回答

1条回答 默认 最新

  • duanchen7703 2018-01-02 14:25
    关注

    In order to get the response payload you should do:

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

    To get the status:

    $responseStatus = $res->getStatusCode();
    

    documentation for more: Guzzle

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码