从azure存储下载时,android vcs文件无法打开

时间:2014-10-10 05:15:38

标签: android azure-storage icalendar

我有一个包含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类型,但仍然没有运气。有人有想法吗?

2 个答案:

答案 0 :(得分:0)

内容类型:文本/日历
内容 - 处理:附件;文件名=事件。的集成电路

答案 1 :(得分:0)

您需要更改标题类型

标题(&#34;内容类型:text / x-vCalendar&#34;); 标题(&#34; Content-Disposition:attachment; filename = myevent.vcs&#34;);