public function OAuthRequest::to_url in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthRequest::to_url()
- 7.3 lib/OAuth.php \OAuthRequest::to_url()
builds a url usable for a GET request
1 call to OAuthRequest::to_url()
File
- ./
OAuth.php, line 338
Class
Code
public function to_url() {
/*{{{*/
$out = $this
->get_normalized_http_url() . "?";
$out .= $this
->to_postdata();
return $out;
}