sdk which call apis of Programming Q&A Site Teratail
You Can Develop an awesome web service which uses teratail's api more rapidly.
This is unofficial sdk.
Write your Gemfile
gem 'teratail-sdk-ruby'
client = Teratail.new(access_token) #input your access token
# get questions
client.question.find_all
# with paging and array limit option
client.question.find_all(2,30) #you can get 2 page and 30 question array element
# get tags
client.tag.find_all
# get users
client.user.find_all
This library's license is MIT.You can alter or reproduct this. Please follow teratail service api term when you use.