= 0.99.1)OAuth::fetch — 獲取一個(gè) OAuth 受保護(hù)的資源說明public OAuth::fetch( string $protected_resource_url, array $extra_parameters">
(PECL OAuth >= 0.99.1)
OAuth::fetch — 獲取一個(gè) OAuth 受保護(hù)的資源
$protected_resource_url
,$extra_parameters
= ?,$http_method
= ?,$http_headers
= ?獲取一個(gè)資源。
protected_resource_url
OAuth 受保護(hù)資源的URL
extra_parameters
和資源請(qǐng)求一起發(fā)送的額外參數(shù)。
http_method
OAUTH_HTTP_METHOD_*
系列 OAUTH 常量之一,GET、POST、PUT、HEAD 或 DELETE 其中的一個(gè)。
HEAD (OAUTH_HTTP_METHOD_HEAD
)可以用于先于請(qǐng)求發(fā)現(xiàn)信息(如果 OAuth 證書在 Authorization
頭部)。
http_headers
HTTP 客戶端頭信息(像 User-Agent, Accept 等等這樣的)。
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
版本 | 說明 |
---|---|
1.0.0 |
以前失敗時(shí)返回 null ,而不是 false 。
|
0.99.5 |
新增 http_method 參數(shù)
|
0.99.8 |
新增 http_headers 參數(shù)
|
示例 #1 OAuth::fetch() example
<?php
try {
$oauth = new OAuth("consumer_key","consumer_secret",OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_AUTHORIZATION);
$oauth->setToken("access_token","access_token_secret");
$oauth->fetch("http://photos.example.net/photo?file=vacation.jpg");
$response_info = $oauth->getLastResponseInfo();
header("Content-Type: {$response_info["content_type"]}");
echo $oauth->getLastResponse();
} catch(OAuthException $E) {
echo "Exception caught!\n";
echo "Response: ". $E->lastResponse . "\n";
}
?>