module Tumblr::Blog

Tumblr::Blog patch

Public Instance Methods

blog_likes(blog_name, options = {}) click to toggle source
# File lib/draftking/patches/tumblr_client.rb, line 5
def blog_likes(blog_name, options = {})
  validate_options([:limit, :before, :after, :offset], options)
  url = blog_path(blog_name, 'likes')

  params = { api_key: @consumer_key }
  params.merge! options
  get(url, params)
end