Sha256: a3da20ee07eb2cd236f1671849a75a8a835ad5d08862c0629b9962033b0154ba
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
require 'twitter/api/utils' require 'twitter/user' module Twitter module API module SpamReporting include Twitter::API::Utils # The users specified are blocked by the authenticated user and reported as spammers # # @see https://dev.twitter.com/docs/api/1.1/post/users/report_spam # @rate_limited Yes # @authentication_required Requires user context # @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. # @return [Array<Twitter::User>] The reported users. # @overload report_spam(*users) # @param users [Array<Integer, String, Twitter::User>, Set<Integer, String, Twitter::User>] An array of Twitter user IDs, screen names, or objects. # @example Report @spam for spam # Twitter.report_spam("spam") # Twitter.report_spam(14589771) # Same as above # @overload report_spam(*users, options) # @param users [Array<Integer, String, Twitter::User>, Set<Integer, String, Twitter::User>] An array of Twitter user IDs, screen names, or objects. # @param options [Hash] A customizable set of options. def report_spam(*args) threaded_user_objects_from_response(:post, "/1.1/users/report_spam.json", args) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
twitter-4.4.4 | lib/twitter/api/spam_reporting.rb |
twitter-4.4.3 | lib/twitter/api/spam_reporting.rb |