Class: Mushikago::Tombo::Client

Inherits:
Http::Client show all
Defined in:
lib/mushikago/tombo/client.rb

Overview

Tomboサービスを利用する

Examples:

client = Mushikago::Tombo::Client.new(:api_key => '<api_key>', :secret_key => '<secret_key>')

client.capture('http://www.tombo.ne.jp/', :thumbnail => true, :tags => ['tombo', 'webservice'])

captures = client.captures
captures['images'].each do |image|
  puts image['image_url']
end

APIキーをファイルから読み込む場合

Mushikago.config.load(YAML.load(File.read('config.yml')))
client = Mushikago::Tombo::Client.new

Instance Attribute Summary

Attributes inherited from Http::Client

api_key, signer

Instance Method Summary (collapse)

Methods inherited from Http::Client

#initialize, #send_request

Constructor Details

This class inherits a constructor from Mushikago::Http::Client

Instance Method Details

- (Mushikago::Http::Response) capture(url, options = {})

指定したURLのキャプチャを取得する

Examples:

client.capture('http://www.tombo.ne.jp/', :thumbnail => true, :tags => ['tombo', 'webservice'])

Parameters:

  • url (String)

    キャプチャ対象のURL

  • options (Hash) (defaults to: {})

    リクエストのオプション

Options Hash (options):

  • :image_format('jpg') (String)

    画像のフォーマット(jpg,png)

  • :image_quality(80) (Integer)

    画像の品質(0-100)

  • :thumbnail(0) (Boolean)

    サムネイル取得フラグ(false:取得しない,true:取得する)

  • :tags (String, Array)

    タグ

Returns:



30
# File 'lib/mushikago/tombo/client.rb', line 30

def capture url, options={}

- (Mushikago::Http::Response) captures(options = {})

いままでキャプチャした画像の情報を取得する

Examples:

client.captures(:tag => 'webservice')

Parameters:

  • options (Hash) (defaults to: {})

    リクエストのオプション

Options Hash (options):

  • :id (String)

    画像のID

  • :domain (String)

    指定したドメインの画像一覧を取得する

  • :tag (String)

    指定したタグの画像一覧を取得する

  • :limit(10) (Integer)

    最大取得件数(1-100)

  • :offset(0) (Integer)

    取得オフセット

Returns:



46
# File 'lib/mushikago/tombo/client.rb', line 46

def captures options={}

- (Mushikago::Http::Response) delete(id, options = {})

指定した画像を削除する

Examples:

client.delete('5a6cdfa3-xxx3-47d6-8xxx-5f83af6b66cc')

Parameters:

  • id (String)

    画像のID

  • options (Hash) (defaults to: {})

    リクエストのオプション

Returns:



58
# File 'lib/mushikago/tombo/client.rb', line 58

def delete id, options={}

- (Mushikago::Http::Response) info(options = {})

APIの使用状況を取得する

Examples:

client.info

Parameters:

  • options (Hash) (defaults to: {})

    リクエストのオプション

Returns:



69
# File 'lib/mushikago/tombo/client.rb', line 69

def info options={}