module Tumblr::Tagged
Public Instance Methods
tagged(tag, options={})
click to toggle source
# 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