重新创建Gmail的Hello World上下文小工具毕竟不是那么简单

时间:2016-04-02 18:23:17

标签: gmail-api gmail-contextual-gadgets

有人可以协助。我使用 Gmail上下文小工具浪费了这么多时间。我正在尝试重新创建Contextual Gadget - Hello World Sample Code

我已对manifest.xmlgadget.xml进行了必要的更改。但是,我正在努力使用manifest.json文件。

我创建了以下manifest.json文件,只会导致应用重定向到我的网站。

{
  "manifest_version": 2,
  "name": "Welcome to helloworld example",
  "version": "0.0.0.5",
  "description": "hello world test",
  "icons": {
    "128": "icons/128.png",
    "16": "icons/16.png"
  },
  "container": ["DOMAIN_INSTALLABLE"],
  "api_console_project_id": "XXXXXXXXXXX",
  "app" : {
    "launch" : {
      "url" : "http://www.XXXXXXX.co.za/gadget.xml"
      }
  }
}

1 个答案:

答案 0 :(得分:1)

据我所知,不可能再通过清单创建小工具。

尝试按照本教程:https://github.com/sbrudz/gadget-hello-world

它对我有用。