我正在尝试使用slack webhook。我可以阅读很多关于我应该如何进行的变化,但直到现在,它们都没有正常工作。
我正在使用request
节点模块进行api调用,但如果需要,我可以更改。
首先尝试关注this
import request from 'request';
const url = 'https://hooks.slack.com/services/xxx';
const text = '(test)!';
request.post(
{
headers : { 'Content-type' : 'application/json' },
url,
payload : JSON.stringify({ text }),
},
(error, res, body) => console.log(error, body, res.statusCode)
);
我得到:null 400 'invalid_payload'
接下来尝试关注this
request.post(
{
headers : { 'Content-type' : 'application/json' },
url,
form : JSON.stringify({ text }),
},
(error, res, body) => console.log(error, body, res.statusCode)
);
这一次,它有效,但Slack显示:%28test%29%21
而不是(test)!
我错过了什么吗?
答案 0 :(得分:3)
基于你的第二个例子和工作的Postman请求,这就是我如何使用它,原谅我的更改需要,因为我现在正在运行旧的节点版本。我不确定你想要发布给Slack的数据是什么样的,这可能会改变你想要组装它的方式。
const request = require('request');
const url = 'https://hooks.slack.com/services/xxxxx';
const text = '(test)!';
request.post(
{
headers : { 'Content-type' : 'application/json' },
url,
form : {payload: JSON.stringify({ text } )}
},
(error, res, body) => console.log(error, body, res.statusCode)
);
如果您想使用请求,您可能需要检查slack-node是如何发布数据的,这里是slack-node
中的相关剪辑Slack.prototype.webhook = function(options, callback) {
var emoji, payload;
emoji = this.detectEmoji(options.icon_emoji);
payload = {
response_type: options.response_type || 'ephemeral',
channel: options.channel,
text: options.text,
username: options.username,
attachments: options.attachments,
link_names: options.link_names || 0
};
payload[emoji.key] = emoji.val;
return request({
method: "POST",
url: this.webhookUrl,
body: JSON.stringify(payload),
timeout: this.timeout,
maxAttempts: this.maxAttempts,
retryDelay: 0
}, function(err, body, response) {
if (err != null) {
return callback(err);
}
return callback(null, {
status: err || response !== "ok" ? "fail" : "ok",
statusCode: body.statusCode,
headers: body.headers,
response: response
});
});
};
答案 1 :(得分:1)
您可以尝试使用松弛节点模块,将帖子包装到挂钩中。这是我用来推送AWS实例通知的简化修改现实示例。
[编辑]已更改为使用您的文字
现在,使用slack-node,你自己组装{},自己添加text:和其他参数并将其传递给.webhook
const Slack = require('slack-node');
const webhookUri = 'https://hooks.slack.com/services/xxxxx';
const slack = new Slack();
slack.setWebhook(webhookUri);
text = "(test)!"
slack.webhook({
text: text
// text: JSON.stringify({ text })
}, function(err, response) {
console.log(err, response);
});
答案 2 :(得分:0)
我终于选择了Slack-webhook,而不是松弛节点。 d parolin 的解决方案是我问题的最佳答案,但我想提及完成 pthm 的工作。