Module Twitter::Client::SpamReporting
In: lib/twitter/client/spam_reporting.rb

Defines methods related to spam reporting @see Twitter::Client::Block

Methods

Public Instance methods

The user specified is blocked by the authenticated user and reported as a spammer

@see dev.twitter.com/docs/api/1/post/report_spam @rate_limited Yes @requires_authentication No @param user [Integer, String] A Twitter user ID or screen name. @param options [Hash] A customizable set of options. @option options [Boolean, String, Integer] :include_entities Include {dev.twitter.com/docs/tweet-entities Tweet Entities} when set to true, ‘t’ or 1. @return [Twitter::User] The reported user. @example Report @spam for spam

  Twitter.report_spam("spam")
  Twitter.report_spam(14589771) # Same as above

[Validate]