RSS源中可以有多个<itunes:author> -tag吗?</itunes:author>

时间:2012-07-04 09:40:51

标签: rss itunes

我想为包含多位作者的播客创建RSS Feed。我要写

<item>
    ...
    <itunes:author>Person 1, Person 2</itunes:author>
    ...
</item>

<item>
    ...
    <itunes:author>Person 1</itunes:author>
    <itunes:author>Person 2</itunes:author>
    ...
</item>

1 个答案:

答案 0 :(得分:2)

如果允许多个作者姓名,他们将嵌套在一般作者父母中,如此(或类似):

<itunes:authors>
    <itunes:author>Person 1</itunes:author>
    <itunes:author>Person 2</itunes:author>
</itunes:authors>

规范文档(http://www.apple.com/itunes/podcasts/specs.html#author)陈述了一个单独的itunes:author元素,这意味着您的问题中的选项1是要走的路:

<item>
    ...
    <itunes:author>Person 1, Person 2</itunes:author>
    ...
</item>

您始终可以通过在线验证工具测试您的Feed:http://feedvalidator.org/