我正在玩Twitter API并试图添加一个朋友。我正在使用cron作业将一些朋友添加到一个帐户但由于某种原因,即使我给API的auth详细信息,我仍然收到401错误,无法理解为什么。我的代码如下。
$connection = new TwitterOAuth($u['consumer_key'], $u['consumer_secret'], $u['oauth_token'], $u['oauth_token_secret']);
$connection->post("friendships/create".$new['follow_id']);
的api连接内容