Home | History | Annotate | Download | only in oauth

Lines Matching defs:http_url

223   protected $http_url;
229 function __construct($http_method, $http_url, $parameters=NULL) {
231 $parameters = array_merge( OAuthUtil::parse_parameters(parse_url($http_url, PHP_URL_QUERY)), $parameters);
234 $this->http_url = $http_url;
241 public static function from_request($http_method=NULL, $http_url=NULL, $parameters=NULL) {
245 $http_url = ($http_url) ? $http_url : $scheme .
287 return new OAuthRequest($http_method, $http_url, $parameters);
293 public static function from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters=NULL) {
304 return new OAuthRequest($http_method, $http_url, $parameters);
382 $parts = parse_url($this->http_url);