Skip to content

Instantly share code, notes, and snippets.

@NickHolcombe
Last active April 3, 2020 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickHolcombe/b97bd4a4a9ffcaf9f6978240bd7f237d to your computer and use it in GitHub Desktop.
Save NickHolcombe/b97bd4a4a9ffcaf9f6978240bd7f237d to your computer and use it in GitHub Desktop.
Example RSS feed for Twilio function Blog Post - from https://www.brightec.co.uk/blog/podcasting-to-those-without-internet-access
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<item>
<title>The title of the podcast one</title>
<itunes:author>Author one</itunes:author>
<enclosure url="https://your-host-name/podcast-one.mp3" type="audio/mpeg"></enclosure>
</item>
<item>
<title>The title of the podcast two</title>
<itunes:author>Author two</itunes:author>
<enclosure url="https://your-host-name/podcast-two.mp3" type="audio/mpeg"></enclosure>
</item>
<item>
<title>The title of the podcast three</title>
<itunes:author>Author three</itunes:author>
<enclosure url="https://your-host-name/podcast-three.mp3" type="audio/mpeg"></enclosure>
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment