module PixivApi::Request::Trends

Public Instance Methods

trend_tags(*args) click to toggle source
# File lib/pixiv_api/request/trends.rb, line 8
def trend_tags(*args)
  raise PixivApi::Client::UnsupportedApiError, 'route of /v1/trends/tags.json is deprecated.'

  # arguments = Arguments.new(args)
  # objects_from_response(Response::Tag, :get, '/v1/trends/tags.json', arguments.options)
end
trend_works(*args) click to toggle source
# File lib/pixiv_api/request/trends.rb, line 4
def trend_works(*args)
  objects_from_response(Response::Work, :get, '/v1/trends/works.json', args.extract_options!)
end