如何将我的播客RSS提要纳入我的个人网站?

时间:2019-11-19 15:02:04

标签: javascript html css

我有一个播客主机(anchor.fm),可以将我的节目RSS提要提交到所有流式传输服务(如iTunes等)。

我希望我的网站上有该RSS提要,该提要在我上传新节目到主播时会更新。

举例说明我所指的https://transistor.fm/features/embeddable-podcast-playerhttp://podcasts.joerogan.net/

有关如何实现此目标的任何提示? HTML / CSS和Javascript是否可行?如果没有,应该使用哪种正确的语言?

1 个答案:

答案 0 :(得分:0)

您可以使用嵌入网站从RSS提要中获取数据,并以JS对象作为回报。例如http://feed2js.org/

或者,RSS提要只是XML数据,因此您可以向RSS提要URL发出ajax请求并解析XML响应。这将为您提供所需的所有数据。

以下是一个项目在XML中的外观示例

        <item>
            <title>
                <![CDATA[Lorem ipsum 2019-11-19T15:06:00Z]]>
            </title>
            <description>
                <![CDATA[Voluptate aliquip pariatur labore id ad.]]>
            </description>
            <link>http://example.com/test/1574175960</link>
            <guid isPermaLink="true">http://example.com/test/1574175960</guid>
            <dc:creator>
                <![CDATA[John Smith]]>
            </dc:creator>
            <pubDate>Tue, 19 Nov 2019 15:06:00 GMT</pubDate>
        </item>

有关更多信息,请参见Parsing XML RSS feed using jQuery and Ajax