当前位置:  开发笔记 > 编程语言 > 正文

Guzzle Post请求与auth

如何解决《GuzzlePost请求与auth》经验,为你挑选了1个好方法。

我第一次使用guzzle.任何人都可以告诉我如何为此请求编写Guzzle电话.

curl -X POST -u username:password -H "Content-Type: application/json" https://xyz/api/v1/accounts.json -d '{"user":{"username":"test","password":"xyz","first_name":"test","last_name":"test","email":"test@test.com","roles":["Administrator"]}}'

我在卷曲请求的-u中遇到问题.

I have written this code.
$response = $client->post($url, [
    'headers' => ['Content-type' => 'application/json'],
    'auth' => ['username:password'],
    'json' => [
        'username' => 'test'
    ],
]);
$results = $response->json();

我试过这个但无法调用API

任何建议或帮助.



1> akshay..:

根据文档,应使用两个元素的数组(登录名和密码)指定基本身份验证:

$client = new GuzzleHttp\Client();
$url = "//xyz/api/v1/accounts.json";
        $response = $client->post($url, [
            'headers' => ['Content-type' => 'application/json'],
            'auth' => [
                'test', 
                'xyz'
            ],
            'json' => [
                "username"=>"xyz",
                "password"=>"xyz",
                "first_name"=>"test",
                "last_name"=>"test",
                "email"=>"test@test.com",
                "roles"=>"Administrator"
            ], 
        ]);

推荐阅读
喜生-Da
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有