因此,我正在尝试通过不和谐的Webhook发送一些内容,但是它无法正常工作,并且我不确定为什么。
function test() {
const message = {
username: 'Bot username',
attachments: [
{
title: 'Title text here',
color: '#8A29FE',
fields: [
{ title: 'Random text'},
{ title: 'Here too'}],
thumb_url: imageUrlHere,
footer: 'Footer Text Here',
footer_icon: 'https://www.conversationstarters.com/random.png'
}
]
}
request({
url: webhook,
json: true,
method: 'POST',
body: message
}, function (e) {
if (e) {
console.log('Error' + e)
}
});
}
test()
它什么也没返回,我也不知道怎么了。