QR 标签 - iCal 和 Vcard

发布于 2024-12-28 15:30:38 字数 61 浏览 1 评论 0原文

是否可以创建一个 QR 代码标签来发送 vCard 并动态地将事件添加到基于今天日期 + 90 天的日历中?

Is it possible to create a QR Code tag that sends a vCard and dynamically adds an event to the calendar that is based on today's date + 90 days?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

国粹 2025-01-04 15:30:38

您可以创建“VEVENT”(一种 vCard),

BEGIN:VEVENT
SUMMARY:My Event
DTSTART;VALUE=DATE:20120125
DTEND;VALUE=DATE:20120126
LOCATION:Hollywood
DESCRIPTION:Having a party
END:VEVENT

日期写为 YYYYMMDD - 因此您可以将其设置为未来 90 天。
但是,无法创建同时具有日历和地址簿条目的代码。

最好的情况是,您可以将电子邮件地址放入“描述”字段中。

You can create a "VEVENT" (a type of vCard)

BEGIN:VEVENT
SUMMARY:My Event
DTSTART;VALUE=DATE:20120125
DTEND;VALUE=DATE:20120126
LOCATION:Hollywood
DESCRIPTION:Having a party
END:VEVENT

The date is written as YYYYMMDD - so you can set it for 90 days in the future.
However, there's no way to create a code which has both a calendar and addressbook entry.

At best, you could put the email address into the DESCRIPTION field.

甩你一脸翔 2025-01-04 15:30:38

如果您将二维码发送到一个登陆页面,该页面识别出它是智能手机,然后向其发送 vcard 和 vcalendar 事件,会怎么样?然后,理论上,一旦手机通过编程访问您的页面,您就可以向手机发送您想要的所有数据。

What if you sent the qr code to a landing page where it identified it was a smartphone and then send it a vcard and a vcalendar event? Then you could theoretically send the phone all the data you want once it visits your page with programming.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文