登录twitter;获取http_code为0


Login with twitter; Getting http_code of 0

我有这个代码启用登录与twitter在我的网站

<?php
require("twitter/twitteroauth.php");
require 'config/twconfig.php'; //CONTAINS CONSUMER SECRET AND CONSUMER KEY
session_start();
$twitteroauth = new TwitterOAuth(YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET);
$twitteroauth->host = "https://api.twitter.com/1.1/";
// Requesting authentication tokens, the parameter is the URL we will be redirected to
$request_token = $twitteroauth->getRequestToken('http://MY WEBSITE URL');
// Saving them into the session
$_SESSION['oauth_token'] = $request_token['oauth_token'];
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];
// If everything goes well..
if ($twitteroauth->http_code == 200) {
    // Let's generate the URL and redirect
    $url = $twitteroauth->getAuthorizeURL($request_token['oauth_token']);
    header('Location: ' . $url);
} else {
    // It's a bad idea to kill the script, but we've got to know when there's an error.
    die('Something wrong happened.'.$twitteroauth->http_code);
}
?>

我正在使用Abraham Williams的twitter oauth。这在几周内很有效,但现在我得到的http_code为0,这甚至没有在推特的错误代码列表中列出。是什么问题

这是我正在使用的片段,它工作得很好。

首先确保以下内容在dev twitter中,你的应用可以读/写刷新消费者密钥,重新创建访问令牌。

如果下列内容不起作用,则问题出在其他地方。见https://dev.twitter.com/search/apachesolr_search/HTTP%20CODE%200

请阅读说明,遵循它们,你的代码将工作

<?php
require_once('twitteroauth.php');  
session_start();  
/* 
 * INSTRUCTIONS!!!
 * https://dev.twitter.com/
 * create app
 * https://dev.twitter.com/ TAB settings 
 * website: THE_URL_TO_YOUR_SCRIPT_WITH_THIS_CODE
 * callback_url http://www.YOURDOMAIN.COM/ 
 * Read, Write and Access direct messages ! 
 * Allow this application to be used to Sign in with Twitter 
 * GO BACK TO DETAILS RECREATE / REFRESH - ACCESS TOKEN! 
 */
$consumerKey = '******************';
$consumerSecret = '******************';
$oAuthToken = '*********************';
$oAuthSecret = '**************************';
// The TwitterOAuth instance  
$twitteroauth = new TwitterOAuth($consumerKey, $consumerSecret);  
// Requesting authentication tokens, the parameter is the URL we will be redirected to  
$request_token = $twitteroauth->getRequestToken('http://DOMAIN.com/YOURLOGINSCRIPT.php');  
// Saving them into the session  
$_SESSION['oauth_token'] = $request_token['oauth_token'];  
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];  
// If everything goes well..  
if($twitteroauth->http_code==200){  
    // Let's generate the URL and redirect  
    $url = $twitteroauth->getAuthorizeURL($request_token['oauth_token']);
    header('Location: '. $url);
} else { 
    // It's a bad idea to kill the script, but we've got to know when there's an error.  
    die('Something wrong happened.');  
}  
?>