在我的网站上,我想允许获得 twitter 授权的用户使用我的应用程序在他们自己的 twitter 墙上(页面)上发表评论。我可以像这样为我的页面做到这一点
$connection = new Twitter_TwitterOAuth(
$this->config->twitter->consumer_key,
$this->config->twitter->consumer_secret,
$this->config->twitter->token,
$this->config->twitter->token_secret
);
$connection->post('statuses/update', array('status' => $data['text'] . $data['name'] . "." . chr(13) . chr(10) . "More details " . $data['link'] .'?review='. $data['id']));
那么我需要做什么才能为另一个帐户发布相同的内容?我需要设置帐户(我想通过应用程序发布状态)ID 或者我需要设置其他
$this->config->twitter->token,
$this->config->twitter->token_secret
用户使用我的应用程序登录时收到的令牌和令牌秘密?
感谢帮助。