$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_'));
}
With this code, I can automatically let a twitter user logged in on my website to follow my account, But how can I follow the twitter user. Like I need to reverse the process so that I can automatically follow the logged in user, Is that possible?