2012-05-09 96 views
0
$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用戶。就像我需要扭轉過程,以便我可以自動跟蹤登錄的用戶,這可能嗎?自動跟隨twitter用戶

回答

1

是的。

$twitteroauth是用您的用戶令牌/密碼創建的,因此所有帶有$twitteroauth的操作都會影響他的帳戶。

只需使用您的令牌/密碼創建另一個$twitteroauth對象。 (你可以把它們放在dev.twitter.com的某個地方,或者只是自己使用你的應用程序並提取它們(如果你收集它們))

相關問題