1

I was playing with the sample app for glass api - sent a bunch of items to my timeline, but now I cant figure out how to remove them? Will they timeout on their own eventually?

4

2 回答 2

6

从哲学上讲,时间线不是您打算像电子邮件收件箱一样管理的集合。这个想法是,随着新卡的出现,旧卡会逐渐消失。

但是,要了解细节,卡片会衰减。它们将在 7 天后不再出现在您的 Glass 上,并且会在 30 天后从 Mirror API 中的时间线集合中消失。

不过,有些警告的话。此衰减属性不是 API 规范的一部分,并且可能会发生变化,请不要依赖此属性进行任何开发。

于 2013-05-03T08:02:33.530 回答
3

DELETE向时间线项目 URL发送 REST操作:

DELETE https://www.googleapis.com/mirror/v1/timeline/{id}

它们也会在一段时间后过期(目前在客户端为 7 天,在服务器上为 30 天。)

于 2013-05-03T01:22:43.050 回答