0

我已经在 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。

4

1 回答 1

0

我只发现使用 botkit 的 file_shared 事件取得了成功。如:

controller.on('file_shared', function(bot, file){
   console.log(JSON.stringify(file));
});

或 file_share 事件:

controller.on('file_share', function(bot, file){
   console.log(JSON.stringify(file));
});
于 2017-03-14T22:08:31.633 回答