GAS:带有令牌的 PropertiesService 对于 PropertiesService 为 null

GAS: PropertiesService with token is null for PropertiesService

将 OAuth 令牌与 Google 应用脚本一起使用以使用 PropertiesService 的正确方法是什么?

我用 slack 构建了一个应用程序,如果我不使用这个源代码

如果我尝试使用它,则结果标记为空:

const token = PropertiesService.getScriptProperties().getProperty('xoxb-slack-token');
Logger.log(token)
...
Info    null

A​​pps 脚本的 PropertiesService 可用于在您的脚本上存储和检索数据。

如果您不先存储它们(例如,通过 setProperty(key,value)),您将无法检索它们。

因此,在这种情况下,您应该首先获取来自 Slack 的任何数据并将其存储为 Apps 脚本属性,如果您想稍后在脚本中使用此服务检索它们。

参考: