我正在学习如何使用来自twitter developer link的Twitter 在使用OAuth页面验证请求时,我正在使用给定的过程
调试我的代码在 向用户发送授权 部分
如果您正在使用回调流程, 你的oauth_callback应该有 收到你的oauth_token( 与你发送的一样,你的“请求 令牌“)和一个叫做的字段 oauth_verifier。你需要那个 下一步。
以下是我收到的回复:
组oauth_token = 8ldIZyxQeVrFZXFOZH5tAwj6vzJYuLQpl0WUEYtWc&安培; oauth_verifier = pDNg57prOHapMbhv25RNf75lVRd6JDsni1AJJIDYoTY
我的原始代码是
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');
/* Build TwitterOAuth object with client credentials. */
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);
/* Get temporary credentials. */
$request_token = $connection->getRequestToken(OAUTH_CALLBACK);
/* Save temporary credentials to session. */
$_SESSION['oauth_token'] = $token = $request_token['oauth_token'];
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];
/* If last connection failed don't display authorization link. */
switch ($connection->http_code) {
case 200:
/* Build authorize URL and redirect user to Twitter. */
echo "<br/>Authorize URL:".$url = $connection->getAuthorizeURL($token);
//header('Location: ' . $url);
break;
default:
/* Show notification if something went wrong. */
echo 'Could not connect to Twitter. Refresh the page or try again later.';
}
我正在获取授权网址:
https://twitter.com/oauth/authenticate?oauth_token=BHqbrTjsPcyvaAsfDwfU149aAcZjtw45nhLBeG1c
我没有超过 oauth_verifier 的网址。请告诉我从哪里看到/调试那个url ??
答案 0 :(得分:2)
从oauth_verifier
返回后,https://twitter.com/oauth/authenticate?oauth_token=xyz
是网址上的参数。因此,如果您在twitter.com上点击“允许”后,您的callback_url为http://example.com/oauth/complete
,那么最终应该是http://example.com/oauth/complete?oauth_token=xyz&oauth_verifier=xyz