String access_token = args[0];
String uid = args[1];
Friendships fm = new Friendships();
fm.client.setToken(access_token);
try {
User fv = fm.destroyFriendshipsDestroyById(uid);
Log.logInfo(fv.toString());
} catch (WeiboException e) {
e.printStackTrace();
}
}