为什么GuzzleHttp客户端在使用Laravel / Lumen发出网络请求时会抛出ClientException?

时间:2019-05-30 01:24:53

标签: php laravel microservices lumen

我目前正在使用Laravel / Lumen微框架构建金融微服务应用程序,一切都按预期进行了完美的工作。我现在的问题是,我正在尝试使用ApiGateway客户端通过来自GuzzleHttp的Api调用向我的内部服务发出网络请求。问题是,当我向内部服务发出请求时,它总是抛出 ClientException 的异常。

  

ClientException

     

客户端错误:GET http://127.0.0.1:8081/v1/admin导致401 Unauthorized响应:{“错误”:“未经授权。”,“代码”:401}

我尝试使用 postman 向相同的内部服务发出网络请求;而且效果很好。但是,由于某些原因,GuzzleHttp仍无法使用。我不知道我在做什么错。请您提供协助。

这是ApiGateway中的httpClient.php。

//Constructor method
public function __construct() {
    $this->baseUri = config('services.auth_admin.base_uri');
}

public function httpRequest($method, $requestUrl, $formParams = [], $headers = []) {
    //Instantiate the GazzleHttp Client
    $client = new Client([
        'base_uri' => $this->baseUri,
    ]);
    //Send the request
    $response = $client->request($method, $requestUrl, ['form_params' => $formParams, 'headers' => $headers]);
    //Return a response
    return $response->getBody();
}

//Internal Service Communication in ApiGateway** 
public function getAdmin($header) {
    return $this->httpRequest('GET', 'admin', $header);
}

InternalServiceController.php

   public function getAdmin(Request $request) {
        return $this->successResponse($this->authAdminService->getAdmin($request->header()));
    }
  

我正在使用流明版本5.8和GuzzleHttp版本6.3

2 个答案:

答案 0 :(得分:0)

您将标题传递为formParams(第三个索引,而不是第四个索引)。

尝试以下方法:

return $this->httpRequest('GET', 'admin', [], $header);

答案 1 :(得分:0)

我在这里做一些假设,希望对您有所帮助。

PHP不支持跳过可选参数,因此在调用httpRequest()时应传递一个空数组[]。

public function httpRequest($method, $requestUrl, $formParams = [], $headers = [], $type='json', $verify = false) {
    //Instantiate the GazzleHttp Client
    $client = new Client([
        'base_uri' => $this->baseUri,
    ]);

    //the request payload to be sent
    $payload = [];

    if (!$verify) {
       $payload['verify'] = $verify; //basically for SSL and TLS
    }

    //add the body to the specified payload type
    $payload[$type] = $formParams;

    //check if any headers have been passed and add it as well
    if(count($headers) > 0) {
        $payload['headers'] = $headers;
    }

    //Send the request
    $response = $client->request($method, $requestUrl, $payload);
    //Return a response
    return $response->getBody();
}

现在,当您不传递任何form_params或body时,需要以这种方式调用它

//Internal Service Communication in ApiGateway** 
 public function getAdmin($header) {
     return $this->httpRequest('GET', 'admin', [], $header);
 }