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.
我已经预订了我的行程,旅游网站连同 pkpassfiles 一起提供了机票。不幸的是,Safari 和 Chrome 都没有检测到它并显示在存折应用程序中打开的选项。它显示了 FileApp/CHM 阅读器等选项。如何解决这个问题?
我使用默认的 Gmail iOS App/Safari 打开打开邮件(这是一个 gmail 服务器)
正如 Petesh 所说,您的服务器没有为文件提供 mime 类型的application/vnd.apple.pkpass.
application/vnd.apple.pkpass
如果使用 Apache,请尝试将以下内容添加到您的 .htaccess 文件或服务器 .conf
AddType application/vnd.apple.pkpass .pkpass
如果您手动生成 .pkpass 文件,则可以在提供文件时设置内容标头。例如对于 PHP,您可以使用:
header('Content-Type: application/vnd.apple.pkpass');