gpt4 book ai didi

slack - 使用 https ://slack. com/api/chat.postMessage 向 Slack 发布消息

转载 作者:行者123 更新时间:2023-12-01 07:40:55 30 4
gpt4 key购买 nike

我想在 x channel 发消息给 slack
我需要发送以下 x 参数
如何将以下参数发送到网站

“ channel ”:“XXXXX”,
“ token ”:“ token ”,
“文字”:“文字”

最佳答案

将您的参数添加到 Slack 的 chat.postMessage 端点的末尾,如下所示:

http://slack.com/api/chat.postMessage?token=XXX&channel=XXX&text=XXX

然后向该 URL 发出 GET 请求以发布您的消息。我个人建议将其作为 Node 应用程序并使用 请求 通过 npm 获得的包。使它非常容易。

在节点应用程序中向 Slack 发布消息
  • 创建一个新的节点项目,然后在命令行中更改到该文件夹​​
  • 在命令行输入 npm install -g request为您的项目安装请求模块
  • 在 index.js 文件中(或您计划调用 API 的任何地方)执行以下操作:
    //Import request module
    var request = require('request');

    //Replace your token, channelID and text here
    var path_to_call = 'http://slack.com/api/chat.postMessage?token=XXX&channel=XXX&text=XXX';

    request(path_to_call, function(error, response, body) {
    if (!error && response.statusCode == 200) {
    console.log('Success');
    } else {
    console.log(error);
    }
    });
  • 关于slack - 使用 https ://slack. com/api/chat.postMessage 向 Slack 发布消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36679293/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com