目前我正在进行一个小项目,根据 AppSheet 的给定输入在 Telegram 中创建自动通知。我在 AppSheet 中创建了一个机器人,使用 Webhook 并在 JSON 正文中应用了代码。
由于它对我来说是新的,我认为 JSON 使用 JavaScript 作为其基本语言,并且我应用了这些代码行:
{"chat_id":<TELEGRAM TOKEN ID>,
"text":"<<CONCATENATE("Notification ",text(today()))>>\n
<<CONCATENATE("ID: ",[ID])>>\n
<<CONCATENATE("Registration Status: ", [Registration Status])>>\n
<<CONCATENATE("No. of Customer: ", [CustomerNumberID])>>\n",
"parse_mode":"MarkdownV2"}
预期的结果应该是,每当用户从 Google AppSheet 输入任何数据到 [ID]、[注册状态] 和 [CustomerNumberID] 时,它都会向 Telegram 频道发送通知。
问题是:
我不知道如何解决它。我有同样的问题。请帮助我。