我正在使用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);
}
);
答案 0 :(得分:15)
我遇到了同样的问题,并通过对数组进行字符串化来修复它。
attachments: JSON.stringify([{"pretext": "pre-hello", "text": "text-world"}])