タグ付けされた質問 「mime」

多目的インターネットメール拡張機能(MIME)は、ASCII以外の文字セットのテキスト、非テキスト添付ファイル、複数の部分を持つメッセージ本文、および非ASCII文字セットのヘッダー情報をサポートするように電子メールの形式を拡張するインターネット標準です

6
YAML MIMEタイプ?
YAMLで構造化されたデータをHTTP経由で送信するときに使用する最も適切なMIMEタイプは何ですか? 特定の選択が最も適切である理由の説明をいただければ幸いです。 表示できる登録済みのアプリケーションタイプまたはテキストタイプはありません。 例: > GET /example.yaml < Content-Type: ???? < < --- # Favorite movies < - Casablanca < - North by Northwest < - Notorious 可能なオプション: text/yaml text/x-yaml application/yaml application/x-yaml
111 http  mime  mime-types  yaml 


5
ファイルのMIMEタイプ(Content-Type)を確認するにはどうすればよいですか?
Linux bashスクリプトでファイルのMIMEタイプ(または「Content-Type」と呼ばれます)を確認する方法はありますか? 私がそれを必要とする理由は、ImageShackがファイルをアップロードするためにそれを必要としているように見えるためapplication/octet-streamです。 ファイルを確認しましたが、実際にはPNG画像です。 $ cat /1.png ?PNG (with a heap load of random characters) これは私にエラーを与えます: $ curl -F "fileupload=@/1.png" http://www.imageshack.us/upload_api.php <links> <error id="wrong_file_type">Wrong file type detected for file 1.png:application/octet-stream</error> </links> これは機能しますが、MIME-TYPEを指定する必要があります。 $ curl -F "fileupload=@/1.png;type=image/png" http://www.imageshack.us/upload_api.php

14
MIMEタイプの不一致が原因でリソースがブロックされました(X-Content-Type-Options:nosniff)
JavaScriptとHTMLを使用してWebページを開発していますが、HTMLページから次のエラーリストを受け取ったときは、すべてが正常に機能していました。 The resource from “https://raw.githubusercontent.com/dataarts/dat.gui/master/build/dat.gui.min.js” was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff). The resource from “https://raw.githubusercontent.com/mrdoob/three.js/dev/build/three.js” was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff). The resource from “https://raw.githubusercontent.com/mrdoob/three.js/master/examples/js/renderers/CanvasRenderer.js” was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff). The resource from “https://raw.githubusercontent.com/mrdoob/three.js/master/examples/js/renderers/Projector.js” was blocked due to MIME type …
92 javascript  mime 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.