gpt4 book ai didi

google-apps-script - getThreads 的超大标签

转载 作者:行者123 更新时间:2023-12-04 14:02:38 24 4
gpt4 key购买 nike

我在一个标签中有 900 多个线程。我想把它们全部取出来在脚本中计算出一些指标。 getThreads()似乎最多 500 个线程,这与文档所说的一致:

This call will fail when the size of all threads is too large for the system to handle. Where the thread size is unknown, and potentially very large, please use the 'paged' call, and specify ranges of the threads to retrieve in each call.



所以现在的问题是当我这样做
GmailApp.getUserLabelByName("Huge Label").getThreads(501, 1000).length;

我收到消息:“最大参数不能超过 500。”关于如何处理具有非常大线程数的标签的任何建议?

最佳答案

getThreads() 方法的签名是

getThreads(start, max)

所以你必须使用
GmailApp.getUserLabelByName("Huge Label").getThreads(501, 500).length;

这将使您的线程从 501 返回到 1000。

关于google-apps-script - getThreads 的超大标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15573319/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com