Sto usando node.js restify ver4.0.3Get restify server di REST API per supportare sia HTTPS e HTTP
Il semplice codice seguente lavora come un semplice server API REST che supporta HTTP. Una chiamata esempio API è http://127.0.0.1:9898/echo/message
var restify = require('restify');
var server = restify.createServer({
name: 'myapp',
version: '1.0.0'
});
server.use(restify.acceptParser(server.acceptable));
server.use(restify.queryParser());
server.use(restify.bodyParser());
//http://127.0.0.1:9898/echo/sdasd
server.get('/echo/:name', function (req, res, next) {
res.send(req.params);
return next();
});
server.listen(9898, function() {
console.log('%s listening at %s', server.name, server.url);
});
Supponiamo che voglio supportare HTTPS ed effettuare la chiamata API https://127.0.0.1:9898/echo/message
Come si può fare?
Ho notato che il ripristino delle modifiche al codice è piuttosto veloce e il codice precedente con la versione precedente potrebbe non funzionare con la versione più recente.
Hai controllato http://qugstart.com/blog/node-js/node-js-restify-server-with-both-http-and-https/? –
Grazie. Sembra buono. Sto provando un esempio basato su quel link. Alcuni problemi al momento. – user781486