我已经尝试了十几个图书馆以及我能想到的所有内容,但我无法在推特上发布推文。代码被挂起了。
这是我使用http://pastebin.com/7Y6wirpD
的当前图书馆这是使用的代码。密钥已被删除。
require_once 'php/twitteroauth.php';
define("CONSUMER_KEY", "***");
define("CONSUMER_SECRET", "***");
define("OAUTH_TOKEN", "***");
define("OAUTH_SECRET", "***");
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, OAUTH_TOKEN, OAUTH_SECRET);
$content = $connection->get('account/verify_credentials');
$connection->post('statuses/update', array('status' => 'Test Tweet!'));
有什么想法吗?