不和谐的webhook问题

时间:2019-04-30 16:08:56

标签: javascript node.js

因此,我正在尝试通过不和谐的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()

它什么也没返回,我也不知道怎么了。

0 个答案:

没有答案