Slackbot附件 - 这有什么问题吗?

时间:2016-03-02 18:21:22

标签: slack-api

我正在使用howkit来为postMessage方法调用api。当我传递附件属性时,它给我invalid_array_arg错误。获得POST的方式有问题

bot.api.chat.postMessage(
        {
            channel : '#general',
            text    : 'hi',
            parse   : true,
            username: '@' + bot.identity.name,
            as_user : true,
            icon_url: listOfMessages.logoUrl,
            attachments: [{"pretext": "pre-hello", "text": "text-world"}]

        }, function (err,res) {
            if(err) console.log(err);
            console.log(res);
        }
    );

1 个答案:

答案 0 :(得分:15)

我遇到了同样的问题,并通过对数组进行字符串化来修复它。

attachments: JSON.stringify([{"pretext": "pre-hello", "text": "text-world"}])