surendra
surendra

Reputation: 2277

sending direct message to a follower using twitter in android

I want send a direct message to one of my follower of twitter through my android application.

I can get the list of user_ids of all my followers by using twitter4j api through following code .

int[] followers=mTwitter.getFollowersList();

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

bur i don't know how to send a direct message to a follower .

Is it possible , and how ?

Thank you .

Upvotes: 0

Views: 2699

Answers (1)

Related Questions