Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Railsで外部のJoomla Webサイトのjsonコンテンツを読み取ることができるかどうか疑問に思っていましたか?
そのようなタスクを完了するためにノコギリを使用する必要がありますか?
さて、Nokogiri は html を解析するためのものです。これは、プレーンルビーで行う方法です(レールでは、おそらくそれらを要求する必要さえありません):
require 'open-uri' require 'json' response = open("http://path.to.website/file.json").read JSON.parse(response)