コード例 #1
0
 /**
  * @return OAuthRequest
  */
 private function newRequestMessageParams($url, $params)
 {
     $method = "POST";
     if ($this->accessorInfo->getHttpMethod() == OAuthStoreVars::$HttpMethod['GET']) {
         $method = "GET";
     }
     return $this->newRequestMessageMethod($method, $url, $params);
 }