二进制 plist 的 HTTP 内容类型是什么?
我正在修改 Rails 服务器以通过 POST 和 PUT 请求处理来自 iPhone 客户端的二进制 plist。据我所知,文本 plist 的内容类型是 text/plist。我希望服务器能够处理文本和二进制 plist,所以我想区分这两种形式。二进制 plist 的内容类型是什么?
I am modifying a rails server to handle binary plist from an iPhone client via POST and PUT requests. The content type for text plist is text/plist, as far as I can tell. I would like the server to handle both text and binary plists, so I would like to distinguish between the two forms. What is the content type for binary plist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信大多数二进制格式前面都有
application
所以可能是application/plist
。请参阅 RFC1341 的底部。
更新
就像 Pumbaa80 提到的那样,由于
application/plist
不是标准 mime 类型,因此应该是application/x-plist
。在 RFC2045 中对此进行了解释:
I believe that most binary formats are preceded by
application
so maybeapplication/plist
.See the bottom of RFC1341.
Update
Like Pumbaa80 mentioned, since
application/plist
is not a standard mime-type it should beapplication/x-plist
.In RFC2045 it explains this: