我已经在 ubuntu 上安装了 botkit。我已经测试了一些发送/接收消息的示例。它工作正常。我试图在 slack 上触发文件上传事件触发器,我在 botkit 中收到了消息/文件上传触发事件,并且在 node.js 中构造多表单数据时遇到问题。
节点.js
controller.on('file_created', function(file) {
console.log("file upload testing' + file)
输出:
file upload testing undefined
我们需要帮助'如何构造数据并获取特定于 url_private 属性字段的文件数据以检索我们上传的 url。