$follows_faelazo = $twitteroauth->get('friendships/exists', array('user_a' => $_SESSION['username'], 'user_b' => 'faelazo'));
if($follows_faelazo){
echo 'You are following @faelazo! Proceed to unfollow...';
$twitteroauth->post('friendships/destroy', array('screen_name' => 'engmohamed_'));
}
有了这段代码,我可以自动让一个 twitter 用户登录我的网站来关注我的帐户,但是我怎样才能关注 twitter 用户。就像我需要扭转这个过程,以便我可以自动关注登录的用户,这可能吗?