Returns the current configuration used by Twitter
@see dev.twitter.com/docs/api/1.1/get/help/configuration @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Twitter::Configuration] Twitter’s configuration. @example Return the current configuration used by Twitter
Twitter.configuration
# File lib/twitter/api/help.rb, line 19 def configuration(options={}) object_from_response(Twitter::Configuration, :get, "/1.1/help/configuration.json", options) end
Returns the list of languages supported by Twitter
@see dev.twitter.com/docs/api/1.1/get/help/languages @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [Array<Twitter::Language>] @example Return the list of languages Twitter supports
Twitter.languages
# File lib/twitter/api/help.rb, line 32 def languages(options={}) objects_from_response(Twitter::Language, :get, "/1.1/help/languages.json", options) end
Returns {twitter.com/privacy Twitter’s Privacy Policy}
@see dev.twitter.com/docs/api/1.1/get/help/privacy @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [String] @example Return {twitter.com/privacy Twitter’s Privacy Policy}
Twitter.privacy
# File lib/twitter/api/help.rb, line 45 def privacy(options={}) get("/1.1/help/privacy.json", options)[:body][:privacy] end
Returns {twitter.com/tos Twitter’s Terms of Service}
@see dev.twitter.com/docs/api/1.1/get/help/tos @rate_limited Yes @authentication Requires user context @raise [Twitter::Error::Unauthorized] Error raised when supplied user credentials are not valid. @return [String] @example Return {twitter.com/tos Twitter’s Terms of Service}
Twitter.tos
# File lib/twitter/api/help.rb, line 58 def tos(options={}) get("/1.1/help/tos.json", options)[:body][:tos] end
Generated with the Darkfish Rdoc Generator 2.