我已在 Slack API 传入 Web 挂钩上启用传入 Web 挂钩。 您的工作区的 Webhook URL:
说明:
要使用 Webhook URL 调度消息,请以 JSON 格式发送消息作为 application/json POST 请求的正文。
将此 Webhook 添加到下面的工作区以激活此 curl 示例。
发布到频道的示例卷曲请求:
curl -X POST -H 'Content-type: application/json' --data '{"text":"Hello, World!"}' https://hooks.slack.com/services/T0AFATG95/B73FDS5R6V/hFApP
(令牌不完整)。
当我发送 POST 请求时,它起作用了!
APP 下午 2:18 你好,世界!
现在我想让 Twillio 使用 web-hook 或 TwiML 将此 POST 请求发送到 slack。 ??? 这基本上是对 slack URL 的中继。如何向该 URL 发出 POST 请求,以便发送到 twillio # 的消息在正文中发送?
在 twillio 手机设置下,我选择以下情况时发生的情况:
Webhook 中出现一条消息 [WEB HOOK GOES HERE] HTTP POST
或者我可以使用:
改为 TwiML Bin 并在 twilio 手机设置中分配它。
如果我无法实现这一点,我将使用 lambda 函数来实现这一点,我只是认为可能有一种方法可以实现这一点,因为我不操纵有关消息的任何内容。
您可以使用
Twilio Function
来完成此操作,这是该函数的代码:
const got = require('got');
exports.handler = function(context, event, callback) {
const requestBody = {
text: event.Body
};
got.post('https://hooks.slack.com/services/T0AFATG95/B73FDS5R6V/hFApP', {
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(requestBody)
})
.then(response => {
let twiml = new Twilio.twiml.MessagingResponse();
twiml.message("Your message has been forwarded to Slack.");
callback(null, twiml);
})
.catch(err => {
callback(err);
});
};
备注:
event.Body
保存发送到您的 Twilio 号码的 SMS 消息如果您不想向发件人发送任何回复,请注释或删除此行:
twiml.message("Your message has been forwarded to Slack.");
另请阅读本文
Building apps with Twilio Functions
https://support.twilio.com/hc/en-us/articles/115007737928-Building-apps-with-Twilio-Functions@philnash 的博客文章是这个答案的灵感https://www.twilio.com/blog/2017/07/forward-incoming-sms-messages-to-email-with-node-js-sendgrid -and-twilio-functions.html
我无法使用上面的示例,因为默认情况下
got
依赖项不再可用。
Twilio 中截至 2024 年的当前 NodeJS 为 18,默认情况下已经包含
fetch
API,因此我重写了上面的示例,没有依赖项:
// Function to forward SMS to Slack
// Replace this with your web hook url
const slackWebhook = "https://hooks.slack.com/services/XXXXXXX/YYYYYYYY/ZZZZZZZZZZZZZZZZ"
exports.handler = async function(context, event, callback) {
console.log("Incoming message: ", event);
const payload = {
text: `${event.From} send SMS: '${event.Body}'`
};
const response = await fetch(slackWebhook, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(payload),
});
const body = await response.text();
console.log("Slack response body: ", body);
};