在与 Abraham 的 TwitterOAuth 的连接阶段获得 "Could not authenticate you"

Getting "Could not authenticate you" at connection stage with Abraham's TwitterOAuth

我正在尝试让用户使用简单的 Twitter 登录登录我的网站。我尝试按照 https://twitteroauth.com/redirect.php 上的说明进行操作,但结果是 "Bad Authentication Error",直到我从键中删除了 getenv()。

这是我的代码:

require "twitteroauth/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;

define('CONSUMER_KEY', '<<MY KEY>>');
define('CONSUMER_SECRET', '<<MY SECRET>>');
define('OAUTH_CALLBACK', 'http://www.example.com/inside/index.php');
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);

$request_token = $connection->oauth('oauth/request_token', array('oauth_callback' => OAUTH_CALLBACK));

响应:

Fatal error: Uncaught exception 'Abraham\TwitterOAuth\TwitterOAuthException' with message '{"errors":[{"code":32,"message":"Could not authenticate you."}]}' in /home/sites/site2/web/inside/twitteroauth/src/TwitterOAuth.php:141 Stack trace: #0 /home/sites/site2/web/inside/index.php(12): Abraham\TwitterOAuth\TwitterOAuth->oauth('oauth/request_t...', Array) #1 {main} thrown in /home/sites/site2/web/inside/twitteroauth/src/TwitterOAuth.php on line 141

我在 SO 和 Google 上所做的每一次搜索似乎都与旧版本的 twitteroauth 有关 - 我很困惑。

如果其他人反对这个 - 我找到的解决方案是放弃 TwitterOAuth,我改用 HybridAuth。容易多了。