Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/authorization-node-service.js @ 830:21a522ca4ce9
osimis/orthanc Docker: links to Github
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 25 Mar 2022 17:30:48 +0100 |
parents | ba2403ebd4b7 |
children |
line wrap: on
line source
const http = require('http'); const requestListener = function(req, res) { let body = ''; req.on('data', function(chunk) { body += chunk; }); req.on('end', function() { console.log(JSON.parse(body)); var answer = { 'granted' : false // Forbid access }; res.writeHead(200); res.end(JSON.stringify(answer)); }); } http.createServer(requestListener).listen(8000);