Module: Corkboard::Client

Extended by:
ActiveSupport::Concern
Included in:
Corkboard::Clients::Instagram
Defined in:
lib/corkboard/client.rb

Overview

Client is ...

Instance Method Summary collapse

Instance Method Details

#callback_urlObject



14
15
16
# File 'lib/corkboard/client.rb', line 14

def callback_url
  [full_host, script_name, "/posts/#{strategy}/callback", query_string].join
end

#preloadObject

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/corkboard/client.rb', line 18

def preload
  raise NotImplementedError
end

#recentObject

Raises:

  • (NotImplementedError)


22
23
24
# File 'lib/corkboard/client.rb', line 22

def recent
  raise NotImplementedError
end

#strategyObject

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/corkboard/client.rb', line 10

def strategy
  raise NotImplementedError
end

#subscribeObject

Raises:

  • (NotImplementedError)


26
27
28
# File 'lib/corkboard/client.rb', line 26

def subscribe(*)
  raise NotImplementedError
end

#subscribe_callbackObject



30
31
32
# File 'lib/corkboard/client.rb', line 30

def subscribe_callback
  callback_url
end