示例#1
0
 /**
  * pretty much a helper function to set up the request
  */
 public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters = NULL)
 {
     @$parameters or $parameters = array();
     $defaults = array("oauth_version" => QQOAuthRequest::$version, "oauth_nonce" => QQOAuthRequest::generate_nonce(), "oauth_timestamp" => QQOAuthRequest::generate_timestamp(), "oauth_consumer_key" => $consumer->key);
     if ($token) {
         $defaults['oauth_token'] = $token->key;
     }
     $parameters = array_merge($defaults, $parameters);
     //unset($parameters['pic']);
     return new QQOAuthRequest($http_method, $http_url, $parameters);
 }
示例#2
0
 /**
  * Format and sign an OAuth / API request
  *
  * @return string
  */
 function oAuthRequest($url, $method, $parameters, $multi = false)
 {
     // echo $url ;
     $request = QQOAuthRequest::from_consumer_and_token($this->consumer, $this->token, $method, $url, $parameters);
     $request->sign_request($this->sha1_method, $this->consumer, $this->token);
     switch ($method) {
         case 'GET':
             //echo $request->to_url();exit;
             return $this->http($request->to_url(), 'GET');
         default:
             return $this->http($request->get_normalized_http_url(), $method, $request->to_postdata($multi), $multi);
     }
 }