Class: WeiboOAuth2::Api::V2::Comments

Inherits:
Base
  • Object
show all
Defined in:
lib/weibo_2/api/v2/comments.rb

Instance Method Summary collapse

Methods inherited from Base

#hashie, #initialize

Constructor Details

This class inherits a constructor from WeiboOAuth2::Api::V2::Base

Instance Method Details

#by_me(opt = {}) ⇒ Object



11
12
13
# File 'lib/weibo_2/api/v2/comments.rb', line 11

def by_me(opt={})
  hashie get("comments/by_me.json", :params => opt)
end

#create(comment, id, opt = {}) ⇒ Object

write interfaces



32
33
34
# File 'lib/weibo_2/api/v2/comments.rb', line 32

def create(comment, id, opt={})
  hashie post("comments/create.json", :params => {:comment => comment, :id => id}.merge(opt))
end

#destroy(cid, opt = {}) ⇒ Object



36
37
38
# File 'lib/weibo_2/api/v2/comments.rb', line 36

def destroy(cid, opt={})
  hashie post("comments/destroy.json", :params => {:cid => cid}.merge(opt))
end

#destroy_batch(cids, opt = {}) ⇒ Object



40
41
42
# File 'lib/weibo_2/api/v2/comments.rb', line 40

def destroy_batch(cids, opt={})
  hashie post("comments/destroy_batch.json", :params => {:cids => cids}.merge(opt))
end

#mentions(opt = {}) ⇒ Object



23
24
25
# File 'lib/weibo_2/api/v2/comments.rb', line 23

def mentions(opt={})
  hashie get("comments/mentions.json", :params => opt)
end

#reply(cid, id, comment, opt = {}) ⇒ Object



44
45
46
# File 'lib/weibo_2/api/v2/comments.rb', line 44

def reply(cid, id, comment, opt={})
  hashie post("comments/reply.json", :params => {:cid => cid, :id => id, :comment => comment}.merge(opt))
end

#show(id, opt = {}) ⇒ Object

read interfaces



7
8
9
# File 'lib/weibo_2/api/v2/comments.rb', line 7

def show(id, opt={})
  hashie get("comments/show.json", :params => {:id => id}.merge(opt))
end

#show_batch(cids, opt = {}) ⇒ Object



27
28
29
# File 'lib/weibo_2/api/v2/comments.rb', line 27

def show_batch(cids, opt={})
  hashie get("comments/show_batch.json", :params => {:cids => cids}.merge(opt))
end

#timeline(opt = {}) ⇒ Object



19
20
21
# File 'lib/weibo_2/api/v2/comments.rb', line 19

def timeline(opt={})
  hashie get("comments/timeline.json", :params => opt)
end

#to_me(opt = {}) ⇒ Object



15
16
17
# File 'lib/weibo_2/api/v2/comments.rb', line 15

def to_me(opt={})
  hashie get("comments/to_me.json", :params => opt)
end