前提・実現したいこと
ProcessingでTwitter4jを使ってマウスをクリックするとAさんのアカウントにダイレクトメッセージを送るものを作ろうとしています。
https://yoppa.org/blog/3972.html
こちらを参考にして自分なりに変えてみて上記のコードを書きました。
sendDirectMessage(long, String) というものに送る相手のユーザーIDとメッセージ使おうとしたとき以下のようなものが出て実行できませんでした。どのようにすればユーザーIDとメッセージを入れることができるのでしょうか?
発生している問題・エラーメッセージ
Cannot make a static reference to the non-static method sendDirectMessage(long, String) from the type DirectMessagesResources staticでないメソッドをstaticコンテキストから参照することはできません
該当のソースコード
Java
1import twitter4j.*; 2import twitter4j.util.*; 3import twitter4j.util.function.*; 4import twitter4j.auth.*; 5import twitter4j.management.*; 6import twitter4j.json.*; 7import twitter4j.api.*; 8import twitter4j.conf.*; 9 10 11String msg = "Hello"; //メッセージ文 12long userID = xxxx; //AさんのユーザーID 13 14String consumerKey = "xxxx"; 15String consumerSecret = "xxxx"; 16String accessToken = "xxxx"; 17String accessSecret = "xxxx"; 18Twitter myTwitter; 19 20 21int ms; 22color bg = color(0, 0, 0); 23 24void setup() { 25 size(400, 400); 26 frameRate(60); 27 28 ConfigurationBuilder cb = new ConfigurationBuilder(); 29 cb.setOAuthConsumerKey(consumerKey); 30 cb.setOAuthConsumerSecret(consumerSecret); 31 cb.setOAuthAccessToken(accessToken); 32 cb.setOAuthAccessTokenSecret(accessSecret); 33 myTwitter = new TwitterFactory(cb.build()).getInstance(); 34} 35 36void draw() { 37 background(bg); 38 if (millis() - ms > 1000) { 39 bg = color(0, 0, 0); 40 } 41} 42 43 44 45void mousePressed() { 46 try { Twitter.sendDirectMessage(userID,msg); //ここでエラーが出る 47 println("send hello"); 48 ms = millis(); 49 bg = color(0, 0, 255); 50 } 51 catch (TwitterException e) { 52 println(e.getStatusCode()); 53 bg = color(255, 0, 0); 54 } 55 56 57 58}