我正在尝试创建一个小网页,其中包含要输入文本的字段和要发送的按钮。当用户点击发送按钮时,将运行一个脚本,将文本发送到松弛通道。我有一个API令牌,但我不确定如何使用JS实现它。我到目前为止已经有了以下内容,我知道即将结束,如果有人可以帮助我非常感激。
发送消息的HTML按钮
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Send slack Message</button>
发送消息的脚本
var path_to_call = 'http://slack.com/api/chat.postMessage?token=my+token+xxxxxxxxx&channel=#testchannel&text=Thisisatest';
request(path_to_call, function(error, response, body) {
if (!error && response.statusCode == 200) {
console.log('Success');
} else {
console.log(error);
}
});