(PECL OAuth >= 0.99.1)
OAuth::getRequestToken — ��ȡһ����������
$request_token_url
[, string $callback_url
] ) : array�ӷ����ṩ�������ȡһ���������ơ�secret ���Լ�һЩ��������Ӧ������
request_token_url
�������� API �� URL��
callback_url
OAuth �ص� URL�� ��������� callback_url
��Ϊ��ֵ����������Ϊ"oob"���� OAuth 2009.1 ��ѯ�ĵ�ַ��
�ɹ���һ�������������˵� OAuth ��Ӧ�����飬ʧ���� FALSE
��
�汾 | ˵�� |
---|---|
1.0.0 |
��ǰʧ��ʱ���� NULL �������� FALSE ��
|
0.99.9 |
���� callback_url ������
|
Example #1 OAuth::getRequestToken() ����
<?php
try {
$oauth = new OAuth(OAUTH_CONSUMER_KEY,OAUTH_CONSUMER_SECRET);
$request_token_info = $oauth->getRequestToken("https://example.com/oauth/request_token");
if(!empty($request_token_info)) {
print_r($request_token_info);
} else {
print "Failed fetching request token, response was: " . $oauth->getLastResponse();
}
} catch(OAuthException $E) {
echo "Response: ". $E->lastResponse . "\n";
}
?>
�������̵���������ڣ�
Array ( [oauth_token] => some_token [oauth_token_secret] => some_token_secret )