脚本调用消息通知

消息通知功能,在网页端能正常使用
不知道能否使用脚本调用,目前试了没有反应

但看到示例上使用的是网址加用户名是不是可以不用在网页端呢还是写错了呢

base.send_toast_notifation(
"https://seatable.github.io/seatable-scripts-cn/python/notifications/aea9e807bcfd4f3481d60294df74f6ee@auth.local",
  "error request",
  "danger"
)

您好,这个接口的消息通知是在用户界面上弹一个 toast 通知
您的代码中应该直接使用用户 id

base.send_toast_notifation(
"aea9e807bcfd4f3481d60294df74f6ee@auth.local",
  "error request",
  "danger"
)