2

複数の作成者がいるポッドキャストの RSS フィードを作成したいと考えています。書きましょうか

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

また

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

?

4

1 に答える 1

3

複数の作成者名が許可されている場合、それらは次のように(または同様の)一般的な作成者の親内にネストされます。

<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>

オンライン検証ツールを使用して、いつでもフィードをテストできます:http: //feedvalidator.org/

于 2012-07-04T09:53:10.040 に答える