OAuth::fetch
(PECL OAuth >= 0.99.1)
OAuth::fetch — Busca um recurso protegido OAuth
Descrição
public OAuth::fetch(
string
array
string
array
): mixed
string
$protected_resource_url
,array
$extra_parameters
= ?,string
$http_method
= ?,array
$http_headers
= ?): mixed
Busca um recurso.
Parâmetros
protected_resource_url
-
URL para o recurso protegido OAuth.
extra_parameters
-
Parâmetros extra a enviar com a requisição para o recurso.
http_method
-
Uma das constantes OAUTH
OAUTH_HTTP_METHOD_*
, que incluem GET, POST, PUT, HEAD, ou DELETE.HEAD (
OAUTH_HTTP_METHOD_HEAD
) pode ser útil para descobrir informações antes da requisição (se as credenciais OAuth estiverem no cabeçalhoAuthorization
). http_headers
-
Cabeçalhos de cliente HTTP (tais como User-Agent, Accept, etc.)
Registro de Alterações
Versão | Descrição |
---|---|
PECL oauth 1.0.0 |
Anteriormente, retornava null em caso de falha, em vez de false .
|
PECL oauth 0.99.5 |
O parâmetro http_method foi adicionado.
|
PECL oauth 0.99.8 |
O parâmetro http_headers foi adicionado.
|
Exemplos
Example #1 Exemplo de OAuth::fetch()
<?php
try {
$oauth = new OAuth("chave_consumidor","senha_consumidor",OAUTH_SIG_METHOD_HMACSHA1,OAUTH_AUTH_TYPE_AUTHORIZATION);
$oauth->setToken("token_acesso","senha_token_acesso");
$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 "Exceção capturada!\n";
echo "Resposta: ". $E->lastResponse . "\n";
}
?>
Veja Também
- OAuth::getLastResponse() - Obtém a última resposta
- OAuth::getLastResponseInfo() - Obtém informação HTTP sobre a última resposta
- OAuth::setToken() - Define o token e o segredo