如何使用 iCalender 生成二维码?
我想生成添加到手机日历中的二维码。我知道这是可能的,因为 这个在线生成器 生成 iCalender QR-完美运行的代码。
我尝试使用 ics 文件作为输入,但它只会使我的 Android 条形码扫描仪崩溃:-) 任何编程语言的示例都会有所帮助。
I want to generate QR-Codes that are added to the calendar on a mobile phone. I know that it is possible because this online gernerator generates iCalender QR-Codes that work perfekt.
I tried it with an ics file as input but it only crashed my android barcode scanner :-)
An example in any programming language would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅http://code.google.com/p/zxing/wiki/BarcodeContents 或 http://www.qr-barcodes.com/data-formats/ 了解不同 QR 条形码数据格式的说明。
如果没有看到实际的 iCalender 文件,几乎不可能知道可能发生了什么。您很可能只需删除
BEGIN:VCALENDAR
/END:VCALENDAR
开始/结束元素,如上页所述。Please see http://code.google.com/p/zxing/wiki/BarcodeContents or http://www.qr-barcodes.com/data-formats/ for a explanation of the different QR barcode data formats.
Without seeing your actual iCalender file, it's nearly impossible to know what's probably going on. Most likely you simply have to remove the
BEGIN:VCALENDAR
/END:VCALENDAR
start/end elements as described on the page above.