1

私はかなり長い間Twitter4Jを使用していますが、この特定の機能を見つけることができないようです。

名前を検索できるようにしたいのですが、特定のユーザーがTwitterを使用しているときに、ツイートやフォロワー(httpからアクセスできるなど)などの基本情報を取得したいのですが、Twitter4Jで行う方法はありますか?コード例もソースも私を助けることができませんでした。

ありがとう、

ウィリアム・ヴァン・ドアーン

4

3 に答える 3

3

以下を見てください:Twitter4J.api.UserMethodsあなたが探しているメソッドがあります。Twitterクラスはそれを直接実装します。

于 2010-05-08T13:43:25.310 に答える
2

私はあなたがtwitter4jライブラリを使用し、アクセストークンを取得し、次にtwitterのオブジェクトを作成し、次にshowuser()を呼び出す必要があると思います。それはユーザーオブジェクトを返し、ユーザーオブジェクトの助けを借りてuはログインユーザーのすべての情報を取得します。君。

    AccessToken a = new AccessToken(token,secret);
    Twitter twitter = new TwitterFactory().getInstance();
    twitter.setOAuthConsumer(Constants.CONSUMER_KEY, Constants.CONSUMER_SECRET);
    twitter.setOAuthAccessToken(a);

    int i=twitter.getId();
    User u=twitter.showUser(i);
    System.out.println("user name"+u.getName());
于 2011-03-25T11:11:23.040 に答える
0

私のPOM.XML

...
  <dependencies>
      <dependency>
           <groupId>org.twitter4j</groupId>
           <artifactId>twitter4j-core</artifactId>
           <version>[4.0,)</version>
       </dependency>
  </dependencies>
...

私のクラステスト

import twitter4j.Twitter;
    import twitter4j.TwitterException;
    import twitter4j.TwitterFactory;
    import twitter4j.User;
    import twitter4j.conf.ConfigurationBuilder;

    public final class GetAccountSettings {

        private final String twitter_consumer_key = "oKu1emQJUGArI6kFNXNTCZ111";
        private final String twitter_consumer_secret = "g3EzljGP91AuqjBtIRjGFbKVEAg5cpxH96D6rWIgk4MbhK5111";
        private final static String oauth_token = "2847960911-LYoKllWcTo3VxZMdcLktWDPbLaeOywwrkf2W111";
        private final static String oauth_token_secret = "JoCajDpKvvzzOfsfQpar8aqIDmspyrGehvdj3YsCAp111";

        public static void main(String[] args) {
        try {

            GetAccountSettings getAccountSettings = new GetAccountSettings();

            // Twitter Conf.
            ConfigurationBuilder cb = new ConfigurationBuilder();
            cb.setDebugEnabled(true).setOAuthConsumerKey(getAccountSettings.twitter_consumer_key).setOAuthConsumerSecret(getAccountSettings.twitter_consumer_secret)
                .setOAuthAccessToken(getAccountSettings.oauth_token).setOAuthAccessTokenSecret(getAccountSettings.oauth_token_secret);

            TwitterFactory tf = new TwitterFactory(cb.build());
            Twitter twitter = tf.getInstance();

            User user = twitter.showUser("MR_Camaleon");
            System.out.println("\n ***************************    INFORMATION TWITTER PROFILE " + user.getScreenName() + "    ************************* \n\n");
            System.out.println("      Id:                    " + user.getId() + " \n");
            System.out.println("      Screen name:           " + user.getScreenName() + " \n");
            System.out.println("      Name:                  " + user.getName() + " \n");
            System.out.println("      Description:           " + user.getDescription() + " \n");
            System.out.println("      Image profile:         " + user.getProfileImageURL() + " \n");
            System.out.println("      Follorwers:            " + user.getFollowersCount() + " \n");
            System.out.println("      Friends:               " + user.getFriendsCount() + " \n");
            System.out.println("      Created date:          " + user.getCreatedAt() + " \n");
            System.out.println("      Language:              " + user.getLang() + " \n");
            System.out.println("      Time zone:             " + user.getTimeZone() + " \n\n");
            System.out.println(" ******************************************************************************************************");

        } catch (TwitterException te) {
            te.printStackTrace();
            System.out.println("Failed to get account settings: " + te.getMessage());
            System.exit(-1);
        }
        }
    }
于 2014-10-28T17:32:06.630 に答える