为什么我的 Twitter oauth 访问令牌无效/已过期

2022-08-30 22:18:07

我正在使用Twitter将用户登录到一个网站,该网站似乎正在运行,直到我尝试获取有效的访问令牌。

require("twitteroauth.php");
require 'twconfig.php';
session_start();

$twitteroauth = new TwitterOAuth(YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET);
$request_token = $twitteroauth->getRequestToken('http://****/tw_response.php');

$oauth_token = $request_token['oauth_token'];
$_SESSION['oauth_token'] = $oauth_token;

$oauth_token_secret = $request_token['oauth_token_secret'];
$_SESSION['oauth_token_secret'] = $oauth_token_secret;

if ($twitteroauth->http_code == 200) {
    url = $twitteroauth->getAuthorizeURL($request_token['oauth_token']);
    header('Location: '.$url);
} else {
    die('Something wrong happened.');
}

这似乎工作正常,将我重定向到twitter以登录并确认访问,之后它将我返回到tw_response.php(我的回调网址),网址中包含以下变量:

http://example.com/login.php?oauth_token=sO3X...yj0k&oauth_verifier=Ip6T...gALQ 

在tw_response.php然后我尝试获取访问令牌,但它报告为无效。我尝试使用 来查看访问令牌的内容,如下所示:var_dump

require("twitteroauth.php");
require 'twconfig.php';
session_start();

$oauth_verifier = $_REQUEST['oauth_verifier'];
$oauth_token = $_SESSION['oauth_token'];
$oauth_token_secret = $_SESSION['oauth_token_secret'];

$twitteroauth = new TwitterOAuth(YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET, $oauth_token, $oauth_token_secret);

$access_token = $twitteroauth->getAccessToken($data['oauth_verifier']);
var_dump($access_token);

以“无效/过期令牌”结尾的结果:var_dump

array(8) {
    ["oauth_url"] => string(104) ""1.0" encoding="UTF-8"?>/oauth/access_token?oauth_consumer_key=ceE...9Dg"
    ["oauth_nonce"]=> string(32) "c52...d07"
    ["oauth_signature"]=> string(28) "ry7...Fcc="
    ["oauth_signature_method"]=> string(9) "HMAC-SHA1"
    ["oauth_timestamp"]=> string(10) "1359031586"
    ["oauth_token"]=> string(40) "sO3...j0k"
    ["oauth_verifier"]=> string(43) "Ip6...ALQ"
    ["oauth_version"]=> string(63) "1.0 Invalid / expired Token "
}

答案 1
$access_token = $twitteroauth->getAccessToken($data['oauth_verifier']);
var_dump($access_token);

魔法从何而来?您有变量 ,但请记住,如果这是您注册的回调 URL,则不需要此变量。$data$oauth_verifier

由于您在 中使用了无效变量,因此它将返回无效值。getAccessToken

使用 TwitterOAuth 的正确方法:

if (!isset($_GET["oauth_token"])) {
    // set these values in a config file somewhere.
    $twitter = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);

    // append a ?. This is your callback URL if you specify something.
    $credentials = $twitter->getRequestToken("http://example.com/test.php?");

    // try and be a bit more elegant with the URL... This is a minimal example
    $url = $twitter->getAuthorizeUrl($credentials);
    echo $url;

    // these are temporary tokens that must be used to fetch the new,
    // permanent access tokens. store these in some way,
    // session is a decent choice.
    $_SESSION["token"] = $credentials["oauth_token"];
    $_SESSION["secret"] = $credentials["oauth_token_secret"];
} else {

    // use the user's previously stored temporary credentials here
    $twitter = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,
                    $_SESSION["token"], $_SESSION["secret"]);

    // uses the oauth_token (from the request) already.
    // you store these credentials in your database (see below).
    $credentials = $twitter->getAccessToken($_GET["oauth_verifier"]);

    // just a printout of credentials. store these, don't display them.
    echo "<pre>";
    var_dump($credentials);
    // valid credentials, provided you give the app access to them.
    echo "</pre>";
}

为了便于使用,我只使用单个脚本进行回调;如果您愿意,可以将相关部分拆分为多个脚本(并且可能应该这样做)。

对于您的数据库来说,凭据还包括Twitter用户的用户名。
编辑Twitter现在为用户ID分配64位整数。应将其存储为字符串,以确保在无法处理应用程序的每个部分中的 64 位整数时,不会出现损坏的用户 ID 和冲突。

array(4) {
  ["oauth_token"]=>
  string(50) "7041...wYupkS"
  ["oauth_token_secret"]=>
  string(42) "O9ENq...21B2fk"
  ["user_id"]=> // user ID. always the same, never changes (store this as ID)
  string(9) "..."
  ["screen_name"]=> // username. can change.
  string(11) "..."
}

因此,如果您想通过twitter登录用户,而无需明确让他们登录您的网站,则可以使用(我使用数据库进行登录,如果您想保存该状态,建议这样做)在上面的脚本中,您将将其添加到块的末尾:$_SESSIONelse

$_SESSION["token"] = $credentials["oauth_token"];
$_SESSION["secret"] = $credentials["oauth_secret"];
$_SESSION["username"] = $credentials["screen_name"];

如果你想给他们一个用户页面,你还可以从GET帐户/verify_credentials获取用户的屏幕名称和更多内容(如果你使用javascript,请通过这里获取他们的用户ID):id_str

$user_array = $twitter->get("account/verify_credentials");

答案 2

如果您的 OAuth 流在某一天工作,但第二天失败,请检查计算机的时钟。我正在运行一个流浪汉盒子,它以某种方式将其时间设置为前一天,这导致Twitter API返回{“code”:89,“message”:“无效或过期的令牌。这也可能显示为 401 时间戳超出范围。您可以使用以下命令在 Ubuntu 中更新时钟:

sudo ntpdate time.nist.gov

如果您的系统上不可用,则替代方法ntpdate

sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z"

推荐