我一直在使用Twitter Oauth API从我的php应用程序发布推特到我的推特时间线。它运作良好。
<?php
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $OAuthToken, $OAuthSecret);
$message = "This is a test message.";
$tweet->post('statuses/update', array('status' => "$message"));
?>
但我想知道,是否有一个API可以将推文发布到我的朋友的时间轴上(我在Twitter上关注的那些)?或者Twitter API是否允许仅向经过身份验证的用户的时间线发布推文?