gpt4 book ai didi

php - curl 到 node.js 的服务器。但不返回任何东西。如何让 server.js 返回 200 json?

转载 作者:可可西里 更新时间:2023-11-01 11:22:45 26 4
gpt4 key购买 nike

我在 node.js 上使用通知系统,我正在尝试在 php 中使用 curl 并将通知推送给它。

但是,每次我在终端或 php 中使用 curl 时,除了推送通知外,它不会返回任何内容。

如何让此代码返回 200 而不是什么都不返回并保持 curl 运行直到超时?

/* CONFIGURATION */

/* Web Server Config */
var _postpath = '/send';
var _listenport = 8888;
var _listenaddr = '0.0.0.0'; //use '0.0.0.0' to listen on all interfaces

/* Slave (sub) Redis Server Config */
var _channelfilter = '*';
var _sub_db_addr = '127.0.0.1';
var _sub_db_passwd_protected = true;
var _sub_db_passwd = 'secret';
var _sub_db_port = 6379; //default redis port is 6379

/* Master (pub) Redis Server Config */
var _pub_db_addr = '127.0.0.1';
var _pub_db_passwd_protected = true;
var _pub_db_passwd = 'secret';
var _pub_db_port = 6379; //default redis port is 6379

/* SocketIO Config */
var _loglevel = 1;

/* simple-pub-sub Config */
var _secretkey = "secret";


/* SERVER CODE -- DO NOT MODIFY */
redis = require('redis');
express = require('express');
socketio = require('socket.io');
fs = require("fs"),
pub = redis.createClient(_pub_db_port, _pub_db_addr); if (_pub_db_passwd_protected) { }

sub = redis.createClient(_sub_db_port, _sub_db_addr); if (_sub_db_passwd_protected) { }
sub.on("pmessage", function(pattern, channel, json) { io.sockets.volatile.emit(channel, JSON.parse(json)); });
sub.psubscribe('*');

app = express.createServer(express.static(__dirname + '/public'),express.bodyParser());
app.listen(_listenport, _listenaddr);
app.post(_postpath, function(req, res){
if(req.body.secretkey==_secretkey){
delete req.body.secretkey; pub.publish(req.body.channel, JSON.stringify(req.body))
}
});

io = socketio.listen(app);
io.configure(function () { io.set('log level', _loglevel) });

谢谢!

最佳答案

只需在帖子上发送一个 200 代码

app.post(_postpath, function(req, res){
if(req.body.secretkey==_secretkey){
delete req.body.secretkey; pub.publish(req.body.channel, JSON.stringify(req.body));
res.send(200);
}
});

关于php - curl 到 node.js 的服务器。但不返回任何东西。如何让 server.js 返回 200 json?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12502286/

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