如何在TwitterOAuth中获取oauth_verifier for PHP

时间:2017-06-13 16:38:19

标签: php twitter twitter-oauth

我已经oauth_token

$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token, $access_token_secret);
$content = $connection->get("account/verify_credentials");

$request_token = $connection->oauth('oauth/request_token', array('oauth_callback' => 'oob'));
$oauth_token = $request_token['oauth_token'];

我需要oauth_verifier进行下一步:

$token = $connection->oauth("oauth/access_token", ["oauth_verifier" => $oauth_verifier]); 

我该怎么办?我知道{_ 1QU}可以在$ _REQUEST中找到,但是我需要做什么请求?

1 个答案:

答案 0 :(得分:3)

https://code.tutsplus.com/tutorials/how-to-authenticate-users-with-twitter-oauth-20--cms-25713

从上面的链接中,您可以获得更多信息以获得验证者