0
votes

Centos 6, Python 3.4 and serving with Bottle.

The feed validates BUT "Feeds should not be served with the "text/html" media type".

Wouldn't .xml file type automatically and application/rss+xml ?

Feed at http://pythom.com/api/rss.xml

Tnx Tom

1

1 Answers

0
votes

Need to add header info in the def.

bottle.response.headers['Content-Type'] = 'application/rss+xml'

Now validating.