我想取消关注不关注我的人。所以我决定使用PHP代码。
$twi = new TwitterOAuth(...);
$friends = (array)$twi->get("friends/ids", ["cursor" => -1, "screen_name" => "mylogin"]);
$followers = (array)$twi->get("followers/ids", ["cursor" => -1, "screen_name" => "mylogin"]);
foreach ($friends['ids'] as $key => $val) {
if (!in_array($val, $followers[ids])){
$twi->post('friendships/destroy', ['user_id' => $user]);
}
}
每当我尝试使用此代码时,我只有一个取消关注的用户。然后我无法访问API,因为我收到错误。
Error 89: Invalid or expired token
如果不丢失访问令牌,我该怎么办?