我刚刚创建了一个应用程序和一个传递,所以我可以将传递添加到iPod中的PassBook,但我无法通过电子邮件或Web服务器链接共享传递。从我从Apple读取的文档中,我需要将MIME类型添加为application/vnd.apple.pkpass
。但是,我不清楚我应该采取什么措施。我不知道如何使用MIME类型。
我应该如何添加此MIME类型才能使用来自我的网络服务的传递?
答案 0 :(得分:13)
<强>的Apache 强>
将以下行添加到:
.htaccess
,或mime.types
文件或httpd.conf
或virtuatl服务器.conf
文件然后重启Apache(如果添加到.htaccess
则不需要)
AddType application/vnd.apple.pkpass pkpass
<强> nginx的强>
将以下行添加到mime.types
文件并重新启动nginx
application/vnd.apple.pkpass pkpass;
<强> IIS 强>
.pkpass
application.vnd.pkpass
如果您通过脚本提供文件并且无法编辑您的网络服务器配置,则可以在发送任何内容之前添加以下行:
<强> PHP 强>
header('Content-Type: application/vnd.apple.pkpass');
<强> C#强>
WebClient client = new WebClient();
client.Headers.Add("Content-Type", "application/vnd.apple.pkpass");
答案 1 :(得分:1)
对于纯PHP解决方案,将.pkpass包添加到服务器,然后创建以下文件并将此文件命名为pass.php。
<?php
$pkpass_file = '/path/to/your/.pkpass/file/GenericMemberCard.pkpass';
header("Pragma: no-cache");
header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/vnd.apple.pkpass");
header('Content-Disposition: attachment; filename="pass.pkpass"');
clearstatcache();
$filesize = filesize($pkpass_file);
if ($filesize)
header("Content-Length: ". $filesize);
header('Content-Transfer-Encoding: binary');
if (filemtime($pkpass_file)) {
date_default_timezone_set("UTC");
header('Last-Modified: ' . date("D, d M Y H:i:s", filemtime($pkpass_file)) . ' GMT');
}
flush();
readfile($pkpass_file);
然后创建第二个文件链接到您在上面创建的文件。
<a href="pass.php">Click to download your pass</a>