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 用户。就像我需要扭转这个过程,以便我可以自动关注登录的用户,这可能吗?

4

1 回答 1

1

是的。

$twitteroauth是使用您的用户令牌/秘密创建的,因此所有操作都会$twitteroauth影响他的帐户。

只需$twitteroauth使用您的令牌/秘密创建另一个对象。(您可以在 dev.twitter.com 中的某个地方获取它们,也可以自己使用您的应用程序并提取它们(如果您收集它们))

于 2012-05-09T07:13:09.073 回答