我有一个包含php
格式的 vCalendar
文件。
以下是它的构建方式:
<?php
header('Content-Type: text/x-vCalendar');
header('Content-Disposition: attachment; filename=event.php');
?>
BEGIN:VCALENDAR
// some required text is here for the calendar to display the appointment
END:VCALENDAR
问题是:
当我从Azure网站的文件夹下载文件(到Android手机)时 - 它有效! 当我将SAME文件保存在azure存储中并下载时 - 它不起作用!
尝试了所有不同的MIME类型,但仍然没有运气。有人有想法吗?
答案 0 :(得分:0)
内容类型:文本/日历
内容 - 处理:附件;文件名=事件。的集成电路强>
答案 1 :(得分:0)
您需要更改标题类型
标题(&#34;内容类型:text / x-vCalendar&#34;); 标题(&#34; Content-Disposition:attachment; filename = myevent.vcs&#34;);