Module: Tumblr::Tagged

Included in:
Client
Defined in:
lib/tumblr/tagged.rb

Instance Method Summary collapse

Instance Method Details

#tagged(tag, options = {}) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/tumblr/tagged.rb', line 4

def tagged(tag, options={})
  validate_options([:before, :limit, :filter], options)

  params = { :tag => tag, :api_key => @consumer_key }
  params.merge!(options)
  get("v2/tagged", params)
end