晚上好,
我正在使用https://github.com/abraham/twitteroauth
中的PHP代码登录完美无缺,但在尝试将状态发布到Twitter时,我收到以下错误:
stdClass Object ( [errors] => Array ( [0] => stdClass Object ( [code] => 220 [message] => Your credentials do not allow access to this resource. ) ) )
我使用以下代码:
session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['oauth_token'],
$_SESSION['oauth_token_secret']);
$token_credentials = $connection->getAccessToken($_REQUEST['oauth_verifier']);
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $token_credentials['oauth_token'],
$token_credentials['oauth_token_secret']);
$account = $connection->get('account/verify_credentials');
$status = $connection->post('statuses/update', array('status' => 'Text of status here'));
我遵循了与网站相同的说明。我哪里错了?
答案 0 :(得分:0)
在你的情况下,你是否必须在Twitter上创建一个api? https://apps.twitter.com/ 如果你这样做,请检查api的配置。 这个链接可能会有所帮助。 https://dev.twitter.com/docs/auth/oauth/faq