我在这里有一个非常具体的问题。 我一直在与Cronjobs合作,让我的Twitter消息自动发布。我找到了Abraham Williams的OAuth库。
这是我到目前为止在设置上所做的事情:
require_once ('Abraham/TwitterOAuth/autoloader.php');
use Abraham\TwitterOAuth\TwitterOAuth;
$consumerKey = "XXXXX"; //add the key from your app
$consumerSecret = "XXXXX"; //add the secret from your app
$accessToken = "XXXXX"; //add the access token from your app
$accessSecret = "XXXXX"; //add the access secret from your app
$message = "This is another Test";
$connection = new TwitterOAuth($consumerKey,$consumerSecret,$accessToken,$accessSecret);
$connection->post("statuses/update", array("status" => $message));
我的问题在这里。如果我把它加载到我的浏览器中,这不应该自动发送推文吗?
我已经设置了自己的Twitter应用程序,并且还设置了所有读写权限。