在我的示例项目中,我尝试使用网址访问Google Book API,但我无法使用isbn编号将图书详细信息存储在数据库中。
url = URI.parse('https://www.googleapis.com/books/v1/volumes?isbn=xxxxxxxxxx')
req = Net::HTTP::Get.new(url.path)
res = Net::HTTP.start(url.host, url.port) {|http|
http.request(req)
}
puts res.
我无法弄清楚我缺少的地方,可能是接近错误。
在我的控制器中,我尝试了上面的示例代码来访问值,但没有成功。有没有其他方法可以解决这个问题。
使用googlebook gem时出错