當前位置: 首頁>>代碼示例>>PHP>>正文


PHP RequestInterface::addHeader方法代碼示例

本文整理匯總了PHP中GuzzleHttp\Message\RequestInterface::addHeader方法的典型用法代碼示例。如果您正苦於以下問題:PHP RequestInterface::addHeader方法的具體用法?PHP RequestInterface::addHeader怎麽用?PHP RequestInterface::addHeader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在GuzzleHttp\Message\RequestInterface的用法示例。


在下文中一共展示了RequestInterface::addHeader方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: buildRequest

 /**
  * @param RequestInterface $request
  * @param bool $acceptJsonResponse
  */
 protected function buildRequest(RequestInterface $request, $acceptJsonResponse = true)
 {
     if ($acceptJsonResponse) {
         $request->addHeader('Accept', 'application/json');
     }
     $request->addHeader('Accept-Charset', 'UTF-8');
 }
開發者ID:schibsted-tech-polska,項目名稱:php-sndapi,代碼行數:11,代碼來源:Client.php

示例2: addAuthTokenHeader

 /**
  * @param RequestInterface $request
  */
 private function addAuthTokenHeader(RequestInterface $request)
 {
     $request->addHeader('Authorization', 'Bearer ' . $this->getAuthToken());
 }
開發者ID:alcaeus,項目名稱:hipchat-commander,代碼行數:7,代碼來源:Client.php

示例3: send

 /**
  * Set HTTP request to activeCollab API
  * @param RequestInterface $request
  * @param bool $authenticate
  * @return object
  * @throws Exception\ApiException
  * @throws Exception\AuthenticationFailedException
  */
 public function send(RequestInterface $request, $authenticate = true)
 {
     $request->addHeader('Accept', 'application/json');
     if ($authenticate) {
         $request->setQuery($request->getQuery()->set('auth_api_token', $this->api_token));
     }
     /** @var ResponseInterface $response */
     $response = $this->client->send($request);
     if ($response->getStatusCode() < 200 || $response->getStatusCode() >= 300) {
         switch ($response->getStatusCode()) {
             case 403:
                 throw new AuthenticationFailedException($response);
             default:
                 throw new ApiException($response);
         }
     }
     return $this->parseResponse($request, $response);
 }
開發者ID:NaszvadiG,項目名稱:activecollab-api,代碼行數:26,代碼來源:BaseApiClient.php

示例4: withJsonContentType

 public function withJsonContentType()
 {
     $this->expectedRequest->addHeader('Content-Type', 'application/json');
     return $this;
 }
開發者ID:lezhnev74,項目名稱:GuzzleHttpMock,代碼行數:5,代碼來源:RequestExpectation.php


注:本文中的GuzzleHttp\Message\RequestInterface::addHeader方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。