我目前正在使用Mirro API为Glass开发应用程序。
调用Google的一个示例是(原始HTTP):
POST /mirror/v1/timeline HTTP/1.1
Host: www.googleapis.com
Authorization: Bearer auth token
Content-Type: application/json
Content-Length: length
{
"text": "Hello world",
"menuItems": [
{ "action": "DELETE" },
{
"action": "CUSTOM",
"id": "complete"
"values": [{
"displayName": "Complete",
"iconUrl": "http://example.com/icons/complete.png"
}]
}
}
这会在我的时间轴上生成一张新卡片。收到后,我可以说“OK Glass”进入语音菜单(这只能在收到卡片后直接使用)。但是,我只在此菜单中看到删除选项。是否可以将自定义菜单项添加到语音菜单中?
可在此处找到常规信息:https://developers.google.com/glass/v1/reference/timeline/insert 我可能忽视了一些事情。