Firefoxでの自動ダウンロード
問題
Microsoft Excelを自動的にダウンロードしたい時、以下のコードは普通だと思われます。
profile.setPreference("browser.helperApps.neverAsk.saveToDisk",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,";
「application/vnd.openxmlformats-officedocument.spreadsheetml.sheet」はMicrosoft ExcelのMIMEタイプです。しかし、相変わらず、「毎回確認する」というダイアログがでてきます。
解決方法
ファイルのMIMEタイプは問題です。確かにExcelのMIMEタイプは正しいですが、Firefoxから見れば、ダウンロードファイルのMIMEタイプは違います。
Firefox -> ウェブ開発 -> ネットワーク(ctrl + shift + ) から見えます。
上の図から、Firefoxが見たダウンロードファイルのContent-Typeはapplication/force-downloadです。だから、以下のコードを試して、ファイルは自動的にダウンロードされました。
profile.setPreference("browser.helperApps.neverAsk.saveToDisk",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, "
+ "application/force-download");
Author And Source
この問題について(Firefoxでの自動ダウンロード), 我々は、より多くの情報をここで見つけました https://qiita.com/youngsend/items/25ac8ea6c176182db8f4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .