mixcloud-rss
mixcloud-rss copied to clipboard
Wrong HTTP content-type
Please set the content-type header to either text/xml or application/xml instead of text/html, as many podcast apps will only take valid xml files.
An example snippet on how to do it:
var http = require('http');
http.createServer(function (req, res) {
res.setHeader("content-type", "text/xml");
}).listen(80);