今回は、weather APIにしました。(https://openweathermap.org/)
APIの取得方法
gem json
def home
require 'net/http'
require 'json'
@url = 'http://api.openweathermap.org/data/2.5/weather?q=berlin,de&appid=ここにapikey。'
@uri = URI(@url)
@response = Net::HTTP.get(@uri)
@output = JSON.parse(@response)
end
output
<%= @output %>
です。