无法在 Firefox OS 应用程序中使用联系人 API

Unable to use Contacts API in Firefox OS app

我已经完成 this 并尝试了那里提到的所有内容,但我总是只会出错。

我已经在模拟器中测试过 "Firefox OS 2.2"。

我的清单包含两个权限,例如:

"permissions": {
    "desktop-notification": {
      "description": "Needed for creating system notifications."
    },
    "contacts": {
      "description": "Needed for reading contacts"
    }
  },

我做错了什么?

知道了,刚刚添加了对清单的访问 属性。现在可以使用了。

"contacts": {
  "access": "readcreate"
}