0

我想通过我的 android 应用程序向我的一位 Twitter 追随者发送直接消息。

我可以通过以下代码使用 twitter4j api 获取所有关注者的 user_ids 列表。

int[] followers=mTwitter.getFollowersList();

for(int i=0;i<followers.length;i++){
Log.e("follower name :",String.valueOf(followers[i]));
}

但我不知道如何向追随者发送直接消息。

有可能吗,怎么做?

谢谢你 。

4

1 回答 1

1

http://twitter4j.org/en/code-examples.html#directMessage

于 2012-05-28T07:12:32.397 回答