twitter4j.api
Interface SpamReportingMethods
- All Known Implementing Classes:
- Twitter
public interface SpamReportingMethods
- Author:
- Joern Huxhorn - jhuxhorn at googlemail.com
Method Summary |
User |
reportSpam(int userId)
The user specified in the id is blocked by the authenticated user and reported as a spammer. |
User |
reportSpam(java.lang.String screenName)
The user specified in the id is blocked by the authenticated user and reported as a spammer. |
reportSpam
User reportSpam(int userId)
throws TwitterException
- The user specified in the id is blocked by the authenticated user and reported as a spammer.
This method calls http://api.twitter.com/1/report_spam.json
- Parameters:
userId
- The ID of the user you want to report as a spammer.
- Returns:
- The User reported as a spammer.
- Throws:
TwitterException
- when Twitter service or network is unavailable- Since:
- Twitter4J 2.1.0
- See Also:
- Twitter API Wiki / Twitter REST API Method: report_spam
reportSpam
User reportSpam(java.lang.String screenName)
throws TwitterException
- The user specified in the id is blocked by the authenticated user and reported as a spammer.
This method calls http://api.twitter.com/1/report_spam.json
- Parameters:
screenName
- The screen name of the user you want to report as a spammer.
- Returns:
- The User reported as a spammer.
- Throws:
TwitterException
- when Twitter service or network is unavailable- Since:
- Twitter4J 2.1.0
- See Also:
- Twitter API Wiki / Twitter REST API Method: report_spam