【发布时间】:2016-12-20 02:17:21
【问题描述】:
我正在寻找/编写一个脚本来归档 Google Chat 消息(环聊)。我认为这会起作用,但它似乎没有做任何事情。谁能指出它为什么不起作用或我做错了什么?
或者 - 如果其他人对我想要做的事情有解决方案,那也太好了!
function ArchiveChats() {
var threads = GmailApp.getChatThreads(0, 100);
GmailApp.moveThreadsToInbox(threads);
GmailApp.moveThreadsToArchive(threads);
}
【问题讨论】:
标签: google-apps-script chat archive hangout