当前位置: 首页>>代码示例>>PHP>>正文


PHP RequestUtil::buildUrlForGetOrPut方法代码示例

本文整理汇总了PHP中RequestUtil::buildUrlForGetOrPut方法的典型用法代码示例。如果您正苦于以下问题:PHP RequestUtil::buildUrlForGetOrPut方法的具体用法?PHP RequestUtil::buildUrlForGetOrPut怎么用?PHP RequestUtil::buildUrlForGetOrPut使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RequestUtil的用法示例。


在下文中一共展示了RequestUtil::buildUrlForGetOrPut方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _getAuthorizeUrl

 protected function _getAuthorizeUrl($redirectUri, $state, $forceReapprove = false)
 {
     if ($forceReapprove === false) {
         $forceReapprove = null;
         // Don't include it in the URL if it's the default value.
     }
     return RequestUtil::buildUrlForGetOrPut($this->userLocale, $this->appInfo->getHost()->getWeb(), "1/oauth2/authorize", array("client_id" => $this->appInfo->getKey(), "response_type" => "code", "redirect_uri" => $redirectUri, "state" => $state, "force_reapprove" => $forceReapprove));
 }
开发者ID:Cloudoki,项目名称:crowd,代码行数:8,代码来源:WebAuthBase.php

示例2: _getAuthorizeUrl

 protected function _getAuthorizeUrl($redirectUri, $state)
 {
     return RequestUtil::buildUrlForGetOrPut($this->userLocale, $this->appInfo->getHost()->getWeb(), "1/oauth2/authorize", array("client_id" => $this->appInfo->getKey(), "response_type" => "code", "redirect_uri" => $redirectUri, "state" => $state));
 }
开发者ID:kokkez,项目名称:shineisp,代码行数:4,代码来源:WebAuthBase.php

示例3: buildUrlForGetOrPut

 /**
  * Build a URL for making a GET or PUT request.  Will add the "locale"
  * parameter.
  *
  * @param string $host
  *    Either the "API" or "API content" hostname from {@link getHost()}.
  * @param string $path
  *    The "path" part of the URL.  For example, "/account/info".
  * @param array|null $params
  *    URL parameters.  For POST requests, do not put the parameters here.
  *    Include them in the request body instead.
  *
  * @return string
  */
 function buildUrlForGetOrPut($host, $path, $params = null)
 {
     return RequestUtil::buildUrlForGetOrPut($this->userLocale, $host, $path, $params);
 }
开发者ID:themexpand,项目名称:xpand-buddy,代码行数:18,代码来源:Client.php


注:本文中的RequestUtil::buildUrlForGetOrPut方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。