作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以在 Google 日历事件中存储自定义属性(一个简单的字符串)?
我试过这个:
// inserting
Event event = new Event();
event.setSummary("test event");
event.set("customProperty", "custom value");
// event.get("customProperty") correctly returns "custom value" here
...
calendarService.events().insert("primary", event).execute();
// obtaining
Events events = calendarService.events().list("primary"). ... .execute();
List<Event> items = events.getItems();
for (Event event : items) {
String result = (String) event.get("customProperty");
}
它使用正确的summary 创建事件,但result(我的自定义属性)始终为空。
最佳答案
您可以为此使用扩展属性 (https://developers.google.com/google-apps/calendar/v3/reference/events#extendedProperties),因为它们是通用键值存储。
根据您是否希望属性在查看事件的 guest 副本时可用,您应该选择共享或私有(private)扩展属性。
关于android - 如何在 Google 日历事件中存储自定义属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32159878/
我是一名优秀的程序员,十分优秀!