简体   繁体   English

Guzzle 身份验证返回 400 错误

[英]Guzzle authentication returning 400 error

I'm trying to authenticate in an api sandbox but error 400 is returning me, I already got it through an extension but in the code with guzzle it's not working, I need to pass the Header parameter with encrypted authorization as it is.我正在尝试在 api 沙箱中进行身份验证,但错误 400 正在返回给我,我已经通过扩展获得了它,但是在带有 guzzle 的代码中它不起作用,我需要通过 Header 参数原样传递加密授权。

 $client = new \GuzzleHttp\Client(['headers' => ['Authorization' => 'Basic $token']]);
                  $response = $client->post('', [
                        'grant_type' => 'password',
                        'scope' => 'forintegration',
                        'username' => '',
                        'password' => '',
                  ]);
                
                  $body = $response->getBody();
                  print_r(json_decode((string) $body));

Working with:与:

$client = new \GuzzleHttp\Client();
              $url = "";
              $response = $client->request('POST', $url, [ 
                'headers' => [
                     'Accept' => 'application/x-www-form-urlencoded', 
                     'Authorization' => 'Basic $token'
                ],
                'form_params' => [
                     'grant_type' => 'password', 
                     'scope' => 'forintegration', 
                     'username' => '',
                     'password' => ''
                ] 
            ]);
            
              $body = $response->getBody();
              print_r(json_decode((string) $body));

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM