在 Lua 中同步 Google 日历
有谁有如何通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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).