在 Lua 中同步 Google 日历

发布于 2025-01-05 19:11:45 字数 60 浏览 0 评论 0原文

有谁有如何通过 Lua 将数据同步到 Google 日历的示例吗? 最后只需更改日期条目并阅读其内容即可。

Does anyone have an example how to sync data to Google Calendar via Lua?
Finally just changing a dates entry and reading its content.

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

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

发布评论

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

评论(1

笛声青案梦长安 2025-01-12 19:11:45

Google 不提供 Lua 客户端库,因此您必须使用他们的 REST API。这意味着最好的入门方法是查看 http:// code.google.com/apis/calendar/v3/getting_started.html

除了普通的 Lua 之外,您至少还需要像 LuaSocket 这样的东西来检索和创建数据线路并基于对其文档的快速浏览,还需要某种身份验证库(我发现 LuaOAuth 与一个快速谷歌,但我不能推荐它,因为我个人没有使用过它)。

Google does not offer a client library for Lua so you will have to use their REST API. This means the best way to get started is by looking at the documentation at http://code.google.com/apis/calendar/v3/getting_started.html.

Besides plain Lua you will need at least something like LuaSocket to retrieve and create data over the wire and based on a quick glance of their documentation some sort of authentication library is required as well (I found LuaOAuth with a quick google, but I can not recommend it because I have personally not used it).

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