Hướng dẫn HTML trên MSN và hạn chế về thẻ

Trang này nêu các hướng dẫn và hạn chế về định dạng HTML trên MSN đối với nội dung nguồn cấp được gửi trong Hub Đối tác của MSN. Thực hiện theo các tiêu chuẩn này để đảm bảo nhập thành công và hiển thị tối ưu trên MSN.

Trong bài viết này

Trong trường hợp HTML được cho phép

Thẻ HTML được cho phép

Không cho phép thẻ HTML

Nhúng được hỗ trợ

Ví dụ về đánh dấu nguồn cấp và RSS phương tiện

Ví dụ về mã ATOM và RSS

Trong trường hợp HTML được cho phép

HTML được phép trong các trường sau:

  • Nội dung của bài viết
  • Trường tả của trang chiếu

HTML không được hỗ trợ trong các trường nguồn cấp dữ liệu khác, bao gồm các thành phần siêu dữ liệu như tiêu đề, tên tác giả hoặc nhãn thể loại.

Thẻ HTML được cho phép

Chỉ sử dụng các thẻ được hỗ trợ bên dưới để đảm bảo nội dung của bạn hiển thị chính xác.

Định dạng Văn bản

  • <b>, <i>, <em>, <strong>, <sub>, <sup>, <small>

Đầu đề

  • <h1> đến <h5>
  • <a> (với href; phải bắt đầu bằng https://, http://, hoặc mailto:)

Hình ảnh

  • <img> (phải sử dụng URL tuyệt đối)

Bảng

  • <table>, <thead>, <tbody>, <tfoot>, tr>, <<td>, <th>, <col>, <caption>, <colgroup>

Danh sách

  • <ul>, <ol>, <li>

Bố cục

  • <p>, <div>, <span>, <br>

Nhúng (Giới hạn)

  • <blockquote>, <iframe (chỉ dành> cho các nền tảng xã hội và video được hỗ trợ — xem bên dưới)

Không cho phép thẻ HTML

Các thẻ sau đây sẽ bị tước bỏ tự động trong quá trình nhập và có thể ngăn phát hành thành công:

  • <phong> cách, <kịch> bản,>< đối tượng, <nhúng>, <param>, <applet>
  • Bất kỳ <thẻ> phương tiện nào không được hình thành đúng cách (ví dụ: thiếu các thuộc tính bắt buộc)
  • Gói khuyến mãi được thêm vào bởi các dịch vụ bên thứ ba (ví dụ: giấy gói Giphy)

Những cách thực hành tốt nhất

  • Tránh các cấu trúc lồng nhau sâu (giữ cấu trúc phân cấp HTML dưới 10 cấp độ).
  • Không sử dụng nhiều <thẻ br> trong một hàng để giãn cách.
  • Không bao gồm kiểu nội tuyến hoặc JavaScript.

Nhúng được hỗ trợ

Bạn chỉ có thể sử <dụng iframe> hoặc mã nhúng dành riêng cho nền tảng cho các dịch vụ sau:

  • YouTube

Quan trọng

Do những thay đổi nền tảng gần đây về phía YouTube, MSN hiện không thể điều tiết nhúng YouTube. Do đó, tất cả các video YouTube 3PP được gửi qua nguồn cấp dữ liệu hoặc bài viết HTML sẽ bị từ chối trong quá trình nhập. Sự cố này ảnh hưởng đến một phần nhỏ nội dung toàn cầu nhưng các đối tác nên tránh sử dụng nhúng YouTube cho đến khi có thông báo thêm. Chúng tôi sẽ cập nhật hướng dẫn này sau khi hỗ trợ được khôi phục.

  • X
  • Facebook
  • Instagram
  • Pinterest
  • Spotify
  • Infogram
  • Google Maps
  • Giphy
  • Phát triển
  • Reddit
  • TikTok

Tất cả các nhúng phải sử https:// URL của bạn. Mã nhúng từ các dịch vụ không được hỗ trợ sẽ bị loại bỏ trong quá trình xử lý.

Ví dụ về đánh dấu nguồn cấp và RSS phương tiện

Media RSS có thể được sử dụng trong cả hai RSS và ATOM nguồn cấp dữ liệu để hiển thị nội dung phương tiện truyền thông như hình ảnh và video trên MSN.

Nhúng nội dung phương tiện

Thẻ <media:content> được sử dụng để nhúng hình ảnh và video trong các bài viết. Không thể kết hợp thẻ này với các thành phần HTML, vì vậy nó phải được xác định ở cấp độ gốc của mục. Media RSS tags must be specified as immediate children of <item> in RSS or <entry> in ATOM feeds, or they will be ignored.

Ảnh nhúng


<media:content 
    url="https://contoso.com/image-source.jpg" 
    type="image/jpeg" 
    medium="image">

  <media:title>Image title</media:title>

  <media:text>Image1 alt-text</media:text>

  <media:credit>Joe Gargery/Fabrikam Images</media:credit>

</media:content>

Video nhúng


<media:content 
    url="https://contoso.com/video.mp4" 
    duration="91" 
    type="video/mp4" 
    medium="video">

  <media:title>Video title</media:title>

  <media:description>Video abstract/description</media:description>

  <media:credit>Joe Gargery/Fabrikam Videos</media:credit>

</media:content>

Thư viện nhúng

Bộ sưu tập có thể được nhúng trong các bài viết bằng cách sử dụng <media:group> thẻ. Thao tác này đóng vai trò như một bộ chứa cho các trang chiếu được gắn thẻ là <media:content>.

Trình chiếu nhúng


<media:group>

  <media:title>Slideshow title</media:title>

  <media:credit role="author">Slideshow author</media:credit>

  <media:content 
      url="https://contoso.com/image1.jpg" 
      type="image/jpeg" 
      medium="image">

    <media:title>Slide 1 title</media:title>
    <media:text>Slide 1 alt-text</media:text>
    <media:description>Slide 1 description</media:description>

  </media:content>

  <media:content 
      url="https://contoso.com/image2.jpg" 
      type="image/jpeg" 
      medium="image">

    <media:title>Slide 2 title</media:title>
    <media:text>Slide 2 alt-text</media:text>
    <media:description>Slide 2 description</media:description>

  </media:content>

</media:group>

Ví dụ về mã ATOM và RSS

Sử dụng các đoạn mã bên dưới để giúp bạn quản lý nguồn cấp dữ liệu của mình. Hãy nhớ sử dụng Hub Đối tác msn để xem trước nội dung của bạn và phát hiện bất kỳ sự cố hiển thị nào.

Nguồn cấp dữ liệu bài viết ATOM

Xin lưu ý rằng ATOM chỉ hỗ trợ Các bài viết ở cấp <entry> độ. Trình chiếu và Video có thể được nhúng nội tuyến trong một bài viết. 

Tiêu đề nguồn cấp (cấu trúc bắt buộc)


<?xml version="1.0" encoding="utf-8"?>
<!-- The root element must include declaration of used namespaces. -->
<feed xmlns="http://www.w3.org/2005/Atom"
      xmlns:media="http://search.yahoo.com/mrss/"
      xmlns:mi="http://schemas.ingestion.microsoft.com/common/"
      xmlns:dcterms="http://purl.org/dc/terms/"
      xml:lang="en-us">

  <id>https://v3spec.msn.com/myfeed.xml</id>
  <title><![CDATA[Feed title]]></title>
  <subtitle><![CDATA[Feed subtitle]]></subtitle>
  <updated>2017-10-02T13:00:00.52Z</updated>

  <author>
    <name>Feed author</name>
    <email>author@contoso.com</email>
  </author>

Mục bài viết cơ bản


  <entry>
    <!-- REQUIRED: Unique ID for this article -->
    <id>https://v3spec.msn.com/article123.htm</id>

    <!-- REQUIRED: Title -->
    <title><![CDATA[High-definition video encoding and streaming]]></title>

    <!-- REQUIRED: Publish date -->
    <published>2017-01-10T10:00:00+0100</published>

    <!-- Last update date -->
    <updated>2017-10-02T13:00:00.52Z</updated>

    <!-- REQUIRED: Canonical link -->
    <link rel="self" href="https://v3spec.msn.com/article123.htm" />

    <!-- Author information -->
    <author>
      <name><![CDATA[Joe Gargery]]></name>
    </author>

    <!-- Optional subtitle -->
    <dcterms:alternative>Article subtitle</dcterms:alternative>

Tùy chọn hết hạn


    <!-- Option 1: Using dcterms:valid -->
    <dcterms:valid>
      start=2016-10-01T10:00:00+0100; 
      end=2018-10-02T10:00:00+0100; 
      scheme=W3C-DTF
    </dcterms:valid>

    <!-- Option 2: Using mi:expirationDate -->
    <mi:expirationDate>2018-10-02T13:00:00.52Z</mi:expirationDate>

Phân loại và siêu dữ liệu


    <!-- Short title (<= 40 chars) -->
    <mi:shortTitle><![CDATA[Short Title]]></mi:shortTitle>

    <!-- Keywords -->
    <media:keywords>keyword1,keyword2,keyword3</media:keywords>

    <!-- Categories -->
    <category term="News" />
    <category term="Sports" />​​​​​​​

Tóm tắt và nội dung nội dung
 


    <!-- Plain text abstract -->
    <summary><![CDATA[ Article abstract/description should be plain text, no HTML is allowed ]]></summary>

    <!-- HTML-formatted body (use CDATA to avoid escaping HTML) -->
    <content type="html">
      <![CDATA[
        <p>Media Services enables you to encode your media files...</p>
        <img src="https://v3spec.msn.com/_files/assets/azure1.jpg"
             alt="Image title"
             title="Image title"
             data-portal-copyright="Joe Gargery/Fabrikam Images"
             data-has-syndication-rights="1"
             data-license-id="698526"
             data-licensor-name="Licensor name"
             data-focal-region="x1:246,y1:140,x2:246,y2:140" />
      ]]>
    </content>

Ví dụ về phương tiện nội tuyến

Video cùng dòng (1PP)


​​​​​​​    <video id="8172818"
           title="an inline video"
           poster="https://contoso.com/videothumbnail.jpg"
           data-description="this is a sample inline video">
      <source src="https://contoso.com/video.mp4" type="video/mp4"/>
    </video>

Video nội tuyến (3PP YouTube)


    <iframe width="100%" height="100%"
            frameborder="0"
            allowfullscreen="true"
            src="https://www.youtube.com/embed/XnZ_J3l_0z4?rel=0">
    </iframe>


Inline slideshow

    <div class="slideshow">
      <cite>Slideshow author</cite>
      <title>Slideshow title</title>
      <figure>
        <img src="https://v3spec.msn.com/image1.jpg" title="slide 1 title"/>
        <figcaption>slide 1 caption <span class="copyright">slide 1 copyrights</span></figcaption>
      </figure>
      <figure>
        <img src="https://v3spec.msn.com/image2.jpg" title="slide 2 title"/>
        <figcaption>slide 2 caption <span class="copyright">Joe Gargery/Fabrikam Images</span></figcaption>
      </figure>
    </div>


Media:Content examples

    <!-- Image -->
    <media:content url="https://v3spec.msn.com/image1.jpg" type="image/jpeg" medium="image">
      <media:credit>Joe Gargery/Fabrikam Images</media:credit>
      <media:title>Image title</media:title>
      <media:text>Image alt-text</media:text>
      <mi:focalRegion>
        <mi:x1>120</mi:x1><mi:y1>120</mi:y1>
        <mi:x2>400</mi:x2><mi:y2>400</mi:y2>
      </mi:focalRegion>
      <mi:hasSyndicationRights>1</mi:hasSyndicationRights>
      <mi:licenseId>698525</mi:licenseId>
      <mi:licensorName>Licensor name</mi:licensorName>
    </media:content>

    <!-- Video -->
    <media:content url="https://v3spec.msn.com/video.mp4" duration="91" type="video/mp4" medium="video">
      <guid>218736</guid>
      <media:thumbnail url="https://v3spec.msn.com/image.jpg"/>
      <media:title>Video title</media:title>
      <media:description>Video description</media:description>
      <media:credit>Joe Gargery/Fabrikam Videos</media:credit>
    </media:content>


Related links example

    <link rel="related" type="text/html"
          href="https://v3spec.msn.com/news/prop_irs_1.html"
          title="New IRS proposal">
      <media:thumbnail url="https://v3spec.msn.com/related_link_thumbnail1.jpg"/>
    </link>

Ví dụ về mục nhập tiếp nhận


  <entry>
    <!-- REQUIRED: Unique identifier of content to remove -->
    <id>https://v3spec.msn.com/article123.htm</id>
    <updated>2017-10-02T13:00:00.52Z</updated>

    <!-- Expiration in the past = takedown -->
    <dcterms:valid>
      start=2019-10-01T10:00:00+0100; 
      end=2018-10-02T10:00:00+0100; 
      scheme=W3C-DTF
    </dcterms:valid>
  </entry>
</feed>

Nguồn cấp bài viết RSS


​​​​​​​<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:media="http://search.yahoo.com/mrss/"
     xmlns:mi="http://schemas.ingestion.microsoft.com/common/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:dcterms="http://purl.org/dc/terms/"
     version="2.0">
 


 <channel>
    <!-- Channel metadata -->
    <title>Lifestyle</title> <!-- REQUIRED -->
    <description>Channel description</description> <!-- REQUIRED -->
    <language>en-us</language> <!-- REQUIRED -->
    <link>https://v3spec.msn.com/lifestyle</link> <!-- REQUIRED -->

    <!-- Begin article item -->
    <item>

      <!-- REQUIRED: Unique article identifier -->
      <guid isPermaLink="false">477648</guid>

      <!-- REQUIRED: Headline/title of the article -->
      <title><![CDATA[High-definition video encoding and streaming]]></title>

      <!-- REQUIRED: Publication date -->
      <pubDate>2017-10-04T08:00:00-05:00</pubDate>

      <!-- OPTIONAL: Last modified date -->
      <dcterms:modified>2017-10-10T10:00:00+0100</dcterms:modified>

      <!-- REQUIRED: URL to full article -->
      <link>https://v3spec.msn.com/articleid=2836489202/</link>

      <!-- OPTIONAL: Author name -->
      <dc:creator>Joe Gargery</dc:creator>

      <!-- OPTIONAL: Subtitle -->
      <dcterms:alternative>Article subtitle</dcterms:alternative>

      <!-- OPTIONAL: Article validity window -->
      <dcterms:valid>start=2016-10-01T10:00:00+0100; end=2018-10-02T10:00:00+0100; scheme=W3C-DTF</dcterms:valid>

      <!-- OPTIONAL: Expiration date -->
      <mi:expirationDate>2018-10-02T13:00:00.52Z</mi:expirationDate>

      <!-- OPTIONAL: Short title for UI (<= 40 characters) -->
      <mi:shortTitle>Short Title</mi:shortTitle>

      <!-- OPTIONAL: Comma-separated keywords -->
      <media:keywords>keyword1,keyword2,keyword3</media:keywords>

      <!-- OPTIONAL: Categories -->
      <category>News</category>
      <category>Sports</category>

      <!-- OPTIONAL: Summary (no HTML allowed) -->
      <description><![CDATA[ Article description should be plain text, no HTML is allowed ]]></description>

      <!-- REQUIRED: Full HTML article content -->
      <content:encoded><![CDATA[
        <img src="https://v3spec.msn.com/_files/assets/azure1.jpg" alt="Image title here." />
        <p>Media Services enables you to encode your media files...</p>
        <p>Here is an example of an embedded 1PP video:</p>
        <video id="8172818" poster="https://v3spec.msn.com/videothumbnail.jpg">
          <source src="https://v3spec.msn.com/video.mp4" type="video/mp4" />
        </video>
        <p>Example of embedded YouTube video:</p>
        <iframe src="https://www.youtube.com/embed/XnZ_J3l_0z4?rel=0"></iframe>
        <p>Example of inline slideshow:</p>
        <div class="slideshow">
          <figure>
            <img src="https://v3spec.msn.com/image1.jpg" />
            <figcaption>slide 1 caption</figcaption>
          </figure>
        </div>
      ]]></content:encoded>

      <!-- REQUIRED: Main article image -->
      <media:content url="https://v3spec.msn.com/image1.jpg" type="image/jpeg" medium="image">
        <!-- OPTIONAL: Image credit -->
        <media:credit>Joe Gargery/Fabrikam Images</media:credit>
        <!-- OPTIONAL: Image title -->
        <media:title>Image title</media:title>
        <!-- OPTIONAL: Image alt text -->
        <media:text>Image alt-text</media:text>
        <!-- OPTIONAL: Focal crop region -->
        <mi:focalRegion>
          <mi:x1>120</mi:x1><mi:y1>120</mi:y1><mi:x2>400</mi:x2><mi:y2>400</mi:y2>
        </mi:focalRegion>
        <!-- OPTIONAL: Licensing metadata -->
        <mi:hasSyndicationRights>1</mi:hasSyndicationRights>
        <mi:licenseId>698525</mi:licenseId>
        <mi:licensorName>Licensor name</mi:licensorName>
      </media:content>

      <!-- OPTIONAL: 3rd party video metadata -->
      <media:content url="https://v3spec.msn.com/video.mp4" duration="91" type="video/mp4" medium="video">
        <!-- REQUIRED inside video metadata -->
        <guid>218736</guid>
        <media:thumbnail url="https://v3spec.msn.com/image.jpg" />
        <media:title>Video title</media:title>
        <media:description>Video description</media:description>
        <media:credit>Joe Gargery/Fabrikam Videos</media:credit>
        <media:subTitle type="application/ttml" lang="en" href="https://www.contols.org/closedcaptions.ttml" />
      </media:content>

      <!-- OPTIONAL: Inline slideshow -->
      <media:group>
        <media:title>Slideshow title</media:title>
        <media:credit role="author">Slideshow author</media:credit>
        <media:content url="https://v3spec.msn.com/image1.jpg" type="image/jpeg" medium="image">
          <media:credit>Joe Gargery/Fabrikam Images</media:credit>
          <media:title>Slide 1 title</media:title>
          <media:text>Slide 1 alt-text</media:text>
          <media:description><![CDATA[<p>Slide 1 description</p>]]></media:description>
        </media:content>
        <media:content url="https://v3spec.msn.com/image2.jpg" type="image/jpeg" medium="image">
          <media:credit>Joe Gargery/Fabrikam Images</media:credit>
          <media:title>Slide 2 title</media:title>
          <media:text>Slide 2 alt-text</media:text>
          <media:description>Slide 2 description</media:description>
        </media:content>
      </media:group>

      <!-- OPTIONAL: Related links with thumbnails -->
      <atom:link rel="related" type="text/html" href="https://v3spec.msn.com/news/prop_irs_1.html" title="New IRS proposal">
        <media:thumbnail url="https://v3spec.msn.com/related_link_thumbnail1.jpg" />
      </atom:link>
      <atom:link rel="related" type="text/html" href="https://v3spec.msn.com/news/prop_irs_2.html" title="New IRS proposal">
        <media:thumbnail url="https://v3spec.msn.com/related_link_thumbnail2.jpg" />
      </atom:link>

    </item>
  </channel>
</rss>

Nguồn cấp trình chiếu RSS


<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:media="http://search.yahoo.com/mrss/"
     xmlns:mi="http://schemas.ingestion.microsoft.com/common/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:dcterms="http://purl.org/dc/terms/"
     version="2.0">

  <channel>
    <title>Lifestyle</title>
    <description>channel description</description>
    <language>en-us</language>
    <link>https://v3spec.msn.com/lifestyle</link>

    <!-- BEGIN ARTICLE ITEM -->
    <item>

      <!-- Required Metadata -->
      <guid isPermaLink="false">477648</guid>
      <title><![CDATA[High-definition video encoding and streaming]]></title>
      <pubDate>2017-10-04T08:00:00-05:00</pubDate>
      <dcterms:modified>2017-10-10T10:00:00+0100</dcterms:modified>
      <link>https://v3spec.msn.com/articleid=2836489202/</link>

      <!-- Author and Metadata -->
      <dc:creator>Joe Gargery</dc:creator>
      <dcterms:alternative>Article subtitle</dcterms:alternative>
      <dcterms:valid>start=2016-10-01T10:00:00+0100; end=2018-10-02T10:00:00+0100; scheme=W3C-DTF</dcterms:valid>
      <mi:expirationDate>2018-10-02T13:00:00.52Z</mi:expirationDate>
      <mi:shortTitle>Short Title</mi:shortTitle>
      <media:keywords>keyword1,keyword2,keyword3</media:keywords>

      <!-- Categories and Summary -->
      <category>News</category>
      <category>Sports</category>
      <description><![CDATA[ Article description should be plain text, no HTML is allowed ]]></description>

      <!-- Article Body (HTML) -->
      <content:encoded><![CDATA[
        <img src="https://v3spec.msn.com/_files/assets/azure1.jpg"
             alt="Image title here."
             title="Image title"
             data-portal-copyright="Joe Gargery/Fabrikam Images"
             data-has-syndication-rights="1"
             data-license-id="698526"
             data-licensor-name="Licensor name"
             data-focal-region="x1:246,y1:140,x2:246,y2:140" />

        <p>Media Services enables you to encode your media files...</p>

        <p>Here is an example of an embedded 1PP video:</p>
        <video id="8172818"
               title="an inline video"
               poster="https://v3spec.msn.com/videothumbnail.jpg"
               data-description="this is a sample inline video"
               data-portal-copyright="Joe Gargery/Fabrikam Videos">
          <source src="https://v3spec.msn.com/video.mp4" type="video/mp4" />
        </video>

        <p>Example of embedded YouTube video:</p>
        <iframe src="https://www.youtube.com/embed/XnZ_J3l_0z4?rel=0" frameborder="0" allowfullscreen></iframe>

        <p>Example of inline slideshow:</p>
        <div class="slideshow">
          <cite>Slideshow author</cite>
          <title>Slideshow title</title>
          <figure>
            <img src="https://v3spec.msn.com/image1.jpg" title="slide 1 title" />
            <figcaption>slide 1 caption <span class="copyright">slide 1 copyrights</span></figcaption>
          </figure>
          <figure>
            <img src="https://v3spec.msn.com/image2.jpg" title="slide 2 title" />
            <figcaption>slide 2 caption <span class="copyright">Joe Gargery/Fabrikam Images</span></figcaption>
          </figure>
        </div>
      ]]></content:encoded>

      <!-- Featured Image Metadata -->
      <media:content url="https://v3spec.msn.com/image1.jpg" type="image/jpeg" medium="image">
        <media:credit>Joe Gargery/Fabrikam Images</media:credit>
        <media:title>Image title</media:title>
        <media:text>Image alt-text</media:text>
        <mi:focalRegion>
          <mi:x1>120</mi:x1><mi:y1>120</mi:y1><mi:x2>400</mi:x2><mi:y2>400</mi:y2>
        </mi:focalRegion>
        <mi:hasSyndicationRights>1</mi:hasSyndicationRights>
        <mi:licenseId>698525</mi:licenseId>
        <mi:licensorName>Licensor name</mi:licensorName>
      </media:content>

      <!-- Video Metadata (3PP) -->
      <media:content url="https://v3spec.msn.com/video.mp4" duration="91" type="video/mp4" medium="video">
        <guid>218736</guid>
        <media:thumbnail url="https://v3spec.msn.com/image.jpg" />
        <media:title>Video title</media:title>
        <media:description>Video description</media:description>
        <media:credit>Joe Gargery/Fabrikam Videos</media:credit>
        <media:subTitle type="application/ttml" lang="en" href="https://www.contols.org/closedcaptions.ttml" />
      </media:content>

      <!-- Inline Slideshow -->
      <media:group>
        <media:title>Slideshow title</media:title>
        <media:credit role="author">Slideshow author</media:credit>

        <media:content url="https://v3spec.msn.com/image1.jpg" type="image/jpeg" medium="image">
          <media:credit>Joe Gargery/Fabrikam Images</media:credit>
          <media:title>Slide 1 title</media:title>
          <media:text>Slide 1 alt-text</media:text>
          <media:description><![CDATA[<p>Slide 1 description</p>]]></media:description>
        </media:content>

        <media:content url="https://v3spec.msn.com/image2.jpg" type="image/jpeg" medium="image">
          <media:credit>Joe Gargery/Fabrikam Images</media:credit>
          <media:title>Slide 2 title</media:title>
          <media:text>Slide 2 alt-text</media:text>
          <media:description>Slide 2 description</media:description>
        </media:content>
      </media:group>

      <!-- Related Links -->
      <atom:link rel="related" type="text/html" href="https://v3spec.msn.com/news/prop_irs_1.html" title="New IRS proposal">
        <media:thumbnail url="https://v3spec.msn.com/related_link_thumbnail1.jpg" />
      </atom:link>

      <atom:link rel="related" type="text/html" href="https://v3spec.msn.com/news/prop_irs_2.html" title="New IRS proposal">
        <media:thumbnail url="https://v3spec.msn.com/related_link_thumbnail2.jpg" />
      </atom:link>

    </item>
    <!-- END ARTICLE ITEM -->

  </channel>
</rss>

Ghi chú

  • Sử dụng media:content cho từng hình ảnh trang chiếu.
  • Luôn bao gồm guid, titlevà cho pubDate mỗi mục.
  • media:title phải media:description khớp với những gì bạn muốn hiển thị trong trình xem trình chiếu trực quan.
  • Hãy đảm bảo ngắt dòng văn bản có định dạng bất kỳ trong <![CDATA[]]>.
  • Sử dụng atom:link cho các media:thumbnail liên kết bài viết liên quan.

Nguồn cấp âm thanh RSS

Ví dụ về nguồn cấp âm thanh RSS


<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:media="https://search.yahoo.com/mrss/"
     xmlns:mi="https://schemas.ingestion.microsoft.com/common/"
     xmlns:dc="https://purl.org/dc/elements/1.1/"
     xmlns:content="https://purl.org/rss/1.0/modules/content/"
     xmlns:dcterms="https://purl.org/dc/terms/"
     xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
  <channel>

    <!-- Channel Metadata -->
    <title>Feed title</title>
    <link>https://www.contoso.com/sports</link>
    <description>Feed description</description>
    <lastBuildDate>01 Oct 2017 13:00:00 GMT</lastBuildDate>

    <!-- Example 1: Audio using Media RSS -->
    <item>
      <guid isPermaLink="false">723435</guid>
      <title>Example audio using Media RSS</title>
      <pubDate>01 Oct 2018 13:00:00 GMT</pubDate>
      <dcterms:modified>2018-10-10T10:00:00+0100</dcterms:modified>
      <link>https://v3spec.msn.com/audioid=2836489202/</link>
      <dcterms:valid>start=2016-10-01T10:00:00+0100; end=2018-10-02T10:00:00+0100; scheme=W3C-DTF</dcterms:valid>
      <description>Audio description</description>

      <media:content url="https://contoso.com/audio/sample.mp3"
                     duration="512"
                     type="audio/mpeg"
                     medium="audio">
        <media:thumbnail url="https://v3spec.msn.com/image.jpg"
                         height="480"
                         width="853" />
        <media:title>Example audio using Media RSS</media:title>
        <media:description>Audio description</media:description>
        <media:credit>Joe Gargery/Fabrikam Videos</media:credit>
      </media:content>
    </item>

    <!-- Example 2: Audio using iTunes Namespace -->
    <item>
      <guid isPermaLink="false">723435</guid>
      <title>Example audio using iTunes namespace</title>
      <pubDate>01 Oct 2018 13:00:00 GMT</pubDate>
      <link>https://v3spec.msn.com/audioid=2836489202/</link>
      <dcterms:modified>2018-10-10T10:00:00+0100</dcterms:modified>
      <dcterms:valid>start=2016-10-01T10:00:00+0100; end=2018-10-02T10:00:00+0100; scheme=W3C-DTF</dcterms:valid>
      <description>Audio description</description>

      <itunes:title>Audio stream title</itunes:title>
      <itunes:author>Provider name</itunes:author>
      <itunes:subtitle>Audio stream subtitle</itunes:subtitle>
      <itunes:summary><![CDATA[audio stream description]]></itunes:summary>
      <itunes:duration>110</itunes:duration>

      <enclosure url="https://contoso.com/audio/sample.mp3"
                 type="audio/mpeg" />
    </item>

  </channel>
</rss>

Ghi chú chính

Phần Mô tả
<media:content> Sử dụng cho định dạng MEDIA RSS. Hỗ trợ hình thu nhỏ, tín dụng và siêu dữ liệu.
<itunes:*> Sử dụng cho nguồn cấp dữ liệu theo kiểu podcast. Bao gồm tác giả, tóm tắt và thời lượng.
<enclosure> Bắt buộc đối với nguồn cấp dữ liệu iTunes. Trỏ tới luồng MP3 thực tế.
guid Phải là duy nhất cho mỗi mặt hàng; không sử dụng lại.
pubDate Bắt buộc. Sử dụng định dạng RFC 822 hoặc RFC 3339.
dcterms:valid Điều khiển hết hạn tùy chỉnh (tùy chọn).

Nguồn cấp video RSS

Ví dụ về nguồn cấp video RSS


<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:media="http://search.yahoo.com/mrss/"
     xmlns:mi="http://schemas.ingestion.microsoft.com/common/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:dcterms="http://purl.org/dc/terms/">

  <channel>

    <!-- Channel Metadata -->
    <title>Feed title</title>
    <link>https://www.contoso.com/sports</link>
    <description>Feed description</description>
    <lastBuildDate>01 Oct 2017 13:00:00 GMT</lastBuildDate>

    <!-- Video Item -->
    <item>

      <!-- Required Metadata -->
      <guid isPermaLink="false">723435</guid>
      <title>Video title</title>
      <pubDate>01 Oct 2017 13:00:00 GMT</pubDate>
      <dcterms:modified>2017-10-10T10:00:00+0100</dcterms:modified>
      <link>https://v3spec.msn.com/articleid=2836489202/</link>

      <!-- Author & Subtitle -->
      <dc:creator>Video author</dc:creator>
      <dcterms:alternative>Article subtitle</dcterms:alternative>

      <!-- Expiration Controls -->
      <dcterms:valid>
        start=2016-10-01T10:00:00+0100; 
        end=2018-10-02T10:00:00+0100; 
        scheme=W3C-DTF
      </dcterms:valid>
      <mi:expirationDate>2018-10-02T13:00:00.52Z</mi:expirationDate>

      <!-- Description & Metadata -->
      <description>Video description</description>
      <media:keywords>keyword1,keyword2,keyword3</media:keywords>
      <category>News</category>
      <category>Sports</category>

      <!-- Video Metadata -->
      <media:content
          url="https://v3spec.msn.com/video.mp4"
          duration="512"
          type="video/mp4"
          medium="video">

        <!-- Thumbnail -->
        <media:thumbnail 
            url="https://v3spec.msn.com/image.jpg"
            height="480"
            width="853" />

        <!-- Title & Description (Overrides) -->
        <media:title>Video title</media:title>
        <media:description>Video description</media:description>

        <!-- Attribution -->
        <media:credit>Joe Gargery/Fabrikam Videos</media:credit>

        <!-- Captions (TTML format) -->
        <media:subTitle 
            type="application/ttml"
            lang="en"
            href="https://www.contols.org/closedcaptions.ttml" />

      </media:content>

    </item>

  </channel>
</rss>

Ghi chú chính

Phần Mục đích
<guid> Nhận dạng duy nhất mục video.
<media:content> Nhúng siêu dữ liệu về tệp video thực tế (URL, loại, thời lượng, v.v.)
<media:subTitle> Trỏ tới tệp TTML tùy chọn cho phụ đề chi tiết.
<media:title/description> Ghi đè tiêu đề/mô tả mức mục khi được xác định.
<mi:expirationDate> Ghi đè tùy chọn cho tuổi thọ mục 1 năm mặc định.
dcterms:valid Ngoài ra còn hỗ trợ các cửa sổ khả dụng liên quan đến thời gian.

Yêu cầu gỡ xuống

Ví dụ về yêu cầu gỡ xuống (định dạng mục RSS)


<!-- Example of a takedown request.
     You must provide a <guid> of an existing item,
     a modified date, and an expiration date in the past. -->

<item>

  <!-- REQUIRED: Unique identifier of the content to be removed.
       This ID must reference an already ingested document. -->
  <guid isPermaLink="false">477649</guid>

  <!-- REQUIRED: Use <dcterms:modified> to signal that this is a new update. -->
  <dcterms:modified>2017-10-10T10:00:00+0100</dcterms:modified>

  <!-- REQUIRED: Use <dcterms:valid> to specify an end date in the past.
       This will trigger the takedown of the associated content. -->
  <dcterms:valid>end=1990-10-02T10:00:00+0100; scheme=W3C-DTF</dcterms:valid>

</item>

Ghi chú

  • Phải <guid> khớp với một mục đã có trong lịch sử nhập của bạn.
  • Yếu tố <dcterms:modified> này là bắt buộc để đăng ký bản cập nhật.
  • Thành <dcterms:valid> phần này phải bao gồm ngày kết thúc trong quá khứ để loại bỏ mục khỏi khả năng hiển thị.