class Telegraph
Public Instance Methods
createAccount(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 5 def createAccount(body) method = 'createAccount' post(method, body) end
createPage(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 10 def createPage(body) method = 'createPage' post(method, body) end
editAccountInfo(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 15 def editAccountInfo(body) method = 'editAccountInfo' post(method, body) end
editPage(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 20 def editPage(body) method = 'editPage' post(method, body) end
getAccountInfo(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 25 def getAccountInfo(body) method = 'getAccountInfo' post(method, body) end
getPage(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 30 def getPage(body) method = 'getPage' post(method, body) end
getPageList(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 35 def getPageList(body) method = 'getPageList' post(method, body) end
getViews(body)
click to toggle source
# File lib/telegraph-ruby.rb, line 40 def getViews(body) method = 'getViews' post(method, body) end
revokeAccessToken(access_token)
click to toggle source
# File lib/telegraph-ruby.rb, line 45 def revokeAccessToken(access_token) method = 'revokeAccessToken' post(method, access_token) end