dongya8378 2017-01-30 03:13
浏览 56
已采纳

如何将'字符添加到表示PHP中WS调用的JSON的字符串中?

I am an abslolute beginner in PHP and moreover in Laravel framework (I came from Java).

I am finding the following problem trying to perform a Guzzle call to a REST web service:

if I do it using mocked creadential data it works fine:

    $response = $client->get('http://localhost:8080/Extranet/login',
        [
            'auth' => [
                'nobili.andrea@gmail.com',
                'pswd'
            ]
        ]);

    $dettagliLogin = json_decode($response->getBody());

    \Log::info('response: '.(json_encode($dettagliLogin)));

But trying to do in this way

    $response = $client->get('http://localhost:8080/Extranet/login',
        [
            'auth' => [
                //'nobili.andrea@gmail.com',
                //'pswd'
                $credentials['email'] . ','
                .$credentials['password']
            ]
        ]);

    $dettagliLogin = json_decode($response->getBody());

    \Log::info('response: '.(json_encode($dettagliLogin)));

it goes into error.

I think that maybe the problem could depend by the fact that the mocked credential contain the ' before and after username and password fields:

'nobili.andrea@gmail.com',
'pswd'

How can I insert it in my dynamic version of code?

展开全部

  • 写回答

2条回答 默认 最新

  • dongyan3237 2017-01-30 03:16
    关注

    You need to perform like this:

       $response = $client->get('http://localhost:8080/Extranet/login',
            [
                'auth' => [
                    $credentials['email'],   // <=== don't concatinate the comma here
                    $credentials['password']
                ]
            ]);
    

    No, need to concatinate the array parameters.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部