How can I add meeting url to .ics file

女生的网名这么多〃 提交于 2021-01-29 13:31:09

问题


Here is how I tried... I used URL property but in calendar(Microsoft Calendar) it is not reflected

BEGIN:VCALENDAR
VERSION:2.0
PRODID://Elara/lofy/tanare/delp/314sum2015//
BEGIN:VEVENT
UID:uid1@example.com
DTSTAMP:19970714T170000Z
ORGANIZER;CN=John Doe:MAILTO:john.doe@example.com
DTSTART;TZID=Asia/Kolkata:20201028T170000
DTEND;TZID=Asia/Kolkata:20201028T173000
SUMMARY:ION-Test
DESCRIPTION:Meeting to provide technical review for "Phoenix"   design.\nHappy Face Conference Room. Phoenix design team
URL:https://www.webex.com/
END:VEVENT
END:VCALENDAR

回答1:


Unfortunately the the DESCRIPTION section is intended to be plain text, so it is not intended to have html url hyperlink. (See the RFC5545 specification)




回答2:


The specification describes the URL property in general terms. https://tools.ietf.org/html/rfc5545#section-3.8.4.6

I suggest check the various meeting scheduling tools and go with that. Arguably the meeting URL is the 'location'. For example ZOOM uses the LOCATION property. https://tools.ietf.org/html/rfc5545#section-3.8.1.7 EG

LOCATION:https://us04web.zoom.us/j/72974416824?pwd=N2ZNVzJxejR6a1p3TWFSU1U1
 eUZwQT09

But then ZOOM also puts html in the DESCRIPTION which is not supported by all applications and not addressed by the specification.



来源:https://stackoverflow.com/questions/64549953/how-can-i-add-meeting-url-to-ics-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!