I am using twitter4j to follow twitter accounts, I would like to know how to implement “you might also want to follow” and “similar to @foo” using twitter4j API.
Is there a way to fetch this information dynamically using this API?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are looking for suggested user list, you should look UserMethods Interface that has the method
ResponseList<User> getUserSuggestions(java.lang.String categorySlug) throws TwitterExceptionThis method should match with the Twitter API GET users/suggestions/:slug
Since Twitter Interface is sub interface of that, you could call that method and get the suggested list from the user.