**如何通过java以编程方式将小工具添加到Google日历?**

时间:2013-05-27 13:07:10

标签: google-gadget

我知道我可以通过java添加“事件”到谷歌日历

---> client.events()。insert(calendar.getId(),event).execute();

同样,有没有办法将小工具添加到日历? 我无法找到与小工具相关的javadoc信息。如果你让我知道与小工具相关的javadoc,那将非常有帮助。

注意:我不想使用GData,我想通过“Google Calendar API v3”。

1 个答案:

答案 0 :(得分:0)

你可以使用这个样本(它不完整,但我想这就够了):

Gadget g = new Gadget();
g.setLink("https://gwt.googleusercontent.com/samples/hellogadgets-1.2.1/hellogadgets/HelloGadgets.gadget.xml");
g.setIconLink("https://www.google.com/favicon.ico");
g.setTitle("DateTime Gadget (a classic!)");
g.setType("application/x-google-gadgets+xml");
g.setDisplay("chip");
g.setWidth(300);
g.setHeight(136);

e.setGadget(g);