Google Sheet 编辑时触发 webhook
Trigger webhook when Google Sheet edited
我制作了一个 google sheet 用于与同事共享待办事项列表。
我希望当 sheet 被修改时,发送消息到 slack 频道。
即使试图找到与此相关的api,我也找不到合适的。
是否有合适的 API 或 webhook?
Drive API 的 Push Notifications which lets you watch for changes to resources. You can also use Apps Scripts' onEdit 触发器更像是一个实时检查器。
function onEdit(e){
// Set a comment on the edited cell to indicate when it was changed.
var range = e.range;
range.setNote('Last modified: ' + new Date());
}
这 forum 也可能提供额外的见解。
我制作了一个 google sheet 用于与同事共享待办事项列表。
我希望当 sheet 被修改时,发送消息到 slack 频道。
即使试图找到与此相关的api,我也找不到合适的。
是否有合适的 API 或 webhook?
Drive API 的 Push Notifications which lets you watch for changes to resources. You can also use Apps Scripts' onEdit 触发器更像是一个实时检查器。
function onEdit(e){
// Set a comment on the edited cell to indicate when it was changed.
var range = e.range;
range.setNote('Last modified: ' + new Date());
}
这 forum 也可能提供额外的见解。