アプリケーションを介して、ユーザーの Twitter の友達に URL リンクを含むダイレクト メッセージを送信する必要があります。メッセージが現在のコードで正常に送信されていません:
public void sendTwitterfriends()
{
HttpClient httpClient = new DefaultHttpClient();
HttpPost request = new HttpPost("https://api.twitter.com/1/direct_messages/new.format");
List<NameValuePair> postParameters = new ArrayList<NameValuePair>();
postParameters.add(new BasicNameValuePair("user_id", "friendsuserid"));
postParameters.add(new BasicNameValuePair("text", "Hi Testing"));
try {
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(postParameters);
request.setEntity(entity);
HttpResponse response= httpClient.execute(request);
}catch (Exception e) {
// TODO: handle exception
}
}
ありがとう