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.
ruby を使用して (.pdf) で終わるリンクを提供しない Web サイトから PDF をダウンロードする必要があります。手動でリンクをクリックして PDF をダウンロードすると、新しいページが表示され、しばらくするとファイルを保存/開くためのダイアログ ボックスが表示されます。
ファイルのダウンロードにご協力ください。
リンク
あなたはこれをする
require 'open-uri' File.open('my_file_name.pdf', "wb") do |file| file.write open('http://someurl.com/2013-1-2/somefile/download').read end
私は自分のプロジェクトでこれを行ってきましたが、うまくいきます。