18

我正在使用 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(我的回调 url),在 url 中有以下变量:

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以“invalid / expired Token”结尾的结果:

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 "
}
4

3 回答 3

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

哪里$data来的神奇?您有变量$oauth_verifier,但请记住,如果这是您注册的回调 URL,则不需要此变量。

由于您在内部使用了无效变量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 让用户登录,而不是明确地让他们登录到你的网站,你可以使用$_SESSION(我使用数据库登录,如果你想保存该状态,建议使用)在上面的脚本中,你会将此添加到else块的末尾:

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

GET account/verify_credentials如果您想给他们一个用户页面,您还可以从 获取用户的屏幕名称和更多信息(如果您使用 javascript,请通过id_str此处获取他们的用户 ID):

$user_array = $twitter->get("account/verify_credentials");
于 2013-02-05T04:08:39.550 回答
1

如果您的 OAuth 流程前一天正常工作,第二天失败,请检查您的计算机时钟。我正在运行一个 Vagrant 盒子,它不知何故将其时间设置为前一天,这导致 Twitter API 返回 {"code":89,"message":"Invalid or expired token."}。这也可能显示为 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"
于 2017-03-11T22:06:12.983 回答
1

如果一个人不付钱,一个人将只能创建开发环境(沙箱)。

正如我在这里回答的那样:

Counts 仅适用于付费高级帐户,并且需要支付高级访问权限。

使用此链接申请访问

于 2020-02-28T21:19:59.957 回答