我正在努力使用OAuth而不是Basic Auth制作我的脚本网格,而且我被卡住了。到目前为止,我现在正在进行身份验证,但我无法做到这一点。这段代码:
<?php
include 'config.php';
include 'twitteroauth/twitteroauth.php';
// Use config.php credentials
$conn = new TwitterOAuth(CONSUMER_KEY,CONSUMER_SECRET);
// Use application's registered callback URL
// And get temporary credentials using made connection
$tempCred = $conn->getRequestToken();
// Use 'Sign in with Twitter'
// for Redirect URL
$rURL = $conn->getAuthorizeURL($tempCred);
echo '<a href="'.$rURL.'">1. Click me first!</a><br />';
工作得很好。但是,当我完成这一步时:
// Build a new TwitterOAuth connection
// Now that the app has verified credentials
$conn = new TwitterOAuth(CONSUMER_KEY,
CONSUMER_SECRET,
$_SESSION['oauth_token'],
$_SESSION['oauth_token_secret']);
// Get non-temporary credentials from Twitter
$tokenCred = $conn->getAccessToken();
echo '<a href="index.php">2. Click me next!</a><br />';
?>
我收到了一个页面不可用,Error 324 (net::ERR_EMPTY_RESPONSE): Unknown error
。有人熟悉这个问题吗?我尽可能地关注文档,但由于我是一个完整的新手,我确信我犯了一些愚蠢的错误。
此外,还有一个跟进问题:一旦我通过此流程获得了我的脚本授权,那么抓取朋友Feed xml
的下一步是什么?我可以像以前一样cURL
吗?
编辑:getAccessToken();
的来源如下:
function getAccessToken($oauth_verifier = FALSE) {
$parameters = array();
if (!empty($oauth_verifier)) {
$parameters['oauth_verifier'] = $oauth_verifier;
}
$request = $this->oAuthRequest($this->accessTokenURL(), 'GET', $parameters);
$token = OAuthUtil::parse_parameters($request);
$this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
return $token;
}
是的,config.php是正确的。
答案 0 :(得分:1)
我已经使用这个api进行基于pin的oauth身份验证。我使用php简单的oauth库http://php.net/manual/en/book.oauth.php。
如果你想看,这是代码。
class TwitterPinBasedOauth{
private static $requestTokenUrl = 'http://twitter.com/oauth/request_token';
private static $accessTokenUrl = 'http://twitter.com/oauth/access_token';
private static $authorizeUrl = 'http://twitter.com/oauth/authorize';
private static $updateUrl = 'http://twitter.com/statuses/update.json';
private $twitterOauth;
public function __construct(){
$this->twitterOauth = new OAuth(ConsumerToken::$CONSUMER_KEY,
ConsumerToken::$CONSUMER_SECRET,
OAUTH_SIG_METHOD_HMACSHA1,
OAUTH_AUTH_TYPE_AUTHORIZATION);
}
public function getAndStoreRequestToken(){
$callbackUrl = "oob";
$response = $this->twitterOauth->getRequestToken(self::$requestTokenUrl, $callbackUrl);
print_r("REQUEST TOKEN:\n");
print_r($response);
print_r(PHP_EOL);
file_put_contents(Constants::$oauth_request_file, serialize($response));
echo "AUTH URL:\n".self::$authorizeUrl."?oauth_token=".$response['oauth_token'].PHP_EOL;
}
public function getAcessToken($pin){
$request_tokens = unserialize(file_get_contents(Constants::$oauth_request_file));
$this->twitterOauth->setToken($request_tokens["oauth_token"],$request_tokens["oauth_token_secret"]);
$response = $this->twitterOauth->getAccessToken(self::$accessTokenUrl, NULL, $pin);
file_put_contents(Constants::$oauth_access_file, serialize($response));
print_r("ACESS TOKEN:\n");
print_r($response);
print_r(PHP_EOL);
}
public function updateStatus($status){
try{
$access_tokens = unserialize(file_get_contents(Constants::$oauth_access_file));
$this->twitterOauth->setToken($access_tokens["oauth_token"],$access_tokens["oauth_token_secret"]);
$this->twitterOauth->fetch(self::$updateUrl,
array('status' => $status),
OAUTH_HTTP_METHOD_POST);
}
catch(OAuthException $e){
error_log($e->getMessage().PHP_EOL);
return intval($e->getCode());
}
}
}
答案 1 :(得分:0)
检查CONSUMER_KEY
和CONSUMER_SECRET
是否与Twitter上的应用程序页面中的值相同。
该方法返回的授权URL是什么?
答案 2 :(得分:0)
我已经使用过这个API,它对我来说很好用。 除了真正检查CONSUMER_KEY和CONSUMER_SECRET之外别无其他想法,正如Ian Quigley所说的那样 因为你说你的$ _SESSION ['oauth_token']是空的,它不应该是。它为空的原因可能是CONSUMER_KEY和CONSUMER_SECRET中的错误值 如果您向Twitter发送错误的密钥,它不会为您提供所需的会话变量
只需检查https://twitter.com/apps(您的应用程序数据)和config.php文件中的值是否相同。默认情况下,config.php包含错误的值,您需要填写自己的值。