我希望能够以我的用户的名义在 Twitter 上发布推文,这些用户也希望在我的网站上分享他们的帖子作为推文。我正在使用 James Mallison 的精彩 TwitterAPIExchange 类,并尝试使用 PHP 在 Twitter 上发帖。该课程可在此处找到。
我正在尝试通过以下方式使用它:
/** Set access tokens here - see: https://dev.twitter.com/apps/ **/
$settings = array(
'oauth_access_token' => $core->getOauthAccessToken(),
'oauth_access_token_secret' => $core->getOauthAccessTokenSecret(),
'consumer_key' => $core->getTwitterConsumerKey(),
'consumer_secret' => $core->getTwitterConsumerSecret()
);
$url = 'https://api.twitter.com/1.1/statuses/update.json';
$requestMethod = 'POST';
$stripped_question = "See my reply to \"$stripped_question\"";
$stripped_response = $stripped_response;
$message = $stripped_question.$stripped_response;
/*$postfields = array(
'status' => rawurlencode(rawurlencode($message))
);*/
$postfields = array(
CURLOPT_HTTPHEADER => array("https://api.twitter.com/oauth/authorize"),
CURLOPT_HEADER => false,
CURLOPT_URL => $core->getHomeUrl(),
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => 'status=' . rawurlencode(rawurlencode($status)),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_VERBOSE => true,
CURLOPT_SSL_VERIFYPEER => false
);
/** Perform the request and echo the response **/
$twitter = new TwitterAPIExchange($settings);
echo "<!--".var_dump($twitter->buildOauth($url, $requestMethod)
->setPostfields($postfields)
->performRequest())."-->";
但是,出了点问题,我收到以下错误:
string(63) "{"errors":[{"message":"Could not authenticate you","code":32}]}"
所以,我的问题是:如何以我网站用户的名义在 Twitter 上发布推文?为什么 twitter 无法验证用户身份?我检查了数据,一切似乎都是正确的,所以我相信问题出在我帖子中的第二个代码上。非常感谢您的任何回答。