Node.js   发布时间:2022-04-24  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了node.js – Slack没有有效负载收到nodejs大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
所以使用curl我可以成功发送post请求到slack

curl -X POST --data-urlencode 'payload={"channel": "#tech-experiment","username": "at-bot","text": "This is posted to #general and comes from a bot named webhookbot.","icon_emoji": ":ghost:"}' https:/company.slack.com/services/hooks/incoming-webhook?token=dddddddd2342343

但是当我使用nodejs将其转换为代码

var request = require('request');
var http = require('http');
var server = http.createServer(function(req,response){
    response.writeHead(200,{"Content-Type":"text/plain"});
    response.end("end");
});

option = {
    url: 'https://company.slack.com/services/hooks/incoming-webhook?token=13123213asdfda',payload: '{"text": "This is a line of text in a channel.\nAnd this is another line of text."}'
}

request.post(
    option,function (error,response,body) {
        if (!error && response.statusCode == 200) {
            console.log(body)
        }else {
            console.log('wtf')
            console.log(response.statusCode)
            console.log(response)
            console.log(error)
        }
    }
);

它抛出状态500.任何人都可以帮忙吗?

我查看了令牌
也完成了我的研究,但没有任何工作..

我感谢你的帮助

解决方法

您需要使用https库,因为服务器请求位于不同的端口上.您当前的代码是将请求发送到端口80而不是端口443.这是我为集成构建的一些示例代码.

var https = require( 'https' );
var options = {
    hostname : 'company.slack.com',path     : '/services/hooks/incoming-webhook?token=rUSX9IyyYiQmotgimcMr4uK8',method   : 'POST'
};

var payload1 = {
    "channel"    : "test","username"   : "masterbot","text"       : "Testing the Slack API!","icon_emoji" : ":ghost:"
};

var req = https.request( options,function (res,b,c) {
    res.setEncoding( 'utf8' );
    res.on( 'data',function (chunk) {
    } );
} );

req.on( 'error',function (e) {
    console.log( 'problem with request: ' + e.message );
} );

req.write( JSON.stringify( payload1 ) );
req.end();

大佬总结

以上是大佬教程为你收集整理的node.js – Slack没有有效负载收到nodejs全部内容,希望文章能够帮你解决node.js – Slack没有有效负载收到nodejs所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: