我已经使用成功设置了一个事件
myEntry.setTitle(new PlainTextConstruct("TEST"))
myEntry.setContent(new PlainTextConstruct("See how much text will fit in there"))
然后我就成功读取了事件记录。
这有效
myTitle = ret.getTitle().getPlainText()
但这会引发错误
myTitle = ret.getContent().getPlainText()
groovy.lang.MissingMethodException: No signature of method:
com.google.gdata.data.TextContent.getPlainText()
如果我做到了,那就更好了
myTitle = req.getContent().toString()
有什么我错过的想法吗?