CINXE.COM

Trackback Namespace for RSS

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-J80V1HPMKT"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-J80V1HPMKT'); </script> <title>Trackback Namespace for RSS</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="alternate" type="application/rss+xml" title="RSS Advisory Board" href="http://feeds.rssboard.org/rssboard" /> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Anton&family=Lisu+Bosa:wght@700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> <style type="text/css" media="screen"> @import url("https://www.rssboard.org/images/stylesheet.css"); </style> <style type="text/css" media="screen"> @import url("https://www.rssboard.org/images/spec-stylesheet.css"); </style> <meta name="robots" content="noodp" /><meta name="description" content="An RSS namespace module that supports trackback pings and trackback messages in RSS feeds." /><link rel="canonical" href="https://www.rssboard.org/trackback" /> </head> <body> <!-- ukey="13C1F4FD" --> <!-- Begin Page --> <div class="container page"> <div class="row"> <div class="col col-md-12 banner"> <h1 class="bannerhead"><a href="/">RSS Advisory Board</a></h1> <h2 class="bannersubhead">Really Simple Syndication specifications, tutorials and discussion</h2> </div> </div> <div class="row"> <div class="col col-md-10"><!-- Begin Google AdSense --> <div align="center"> <p><script type="text/javascript"><!-- google_ad_client = "pub-8378161688790357"; /* RSS Board, 728x90, created 10/30/10 */ google_ad_slot = "8997688149"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/javascript" src="//pagead2.googlesyndication.com/pagead/show_ads.js"> </script></p> </div> <!-- End Google AdSense --><!-- Begin Main Content --> <div class="specification"> <h3>Trackback Namespace for RSS</h3> <p class="fineprint">Editor's Note: This is version 1.1 of this document, published Oct. 19, 2006.</p> <h4 id="introduction">1. <a href="#introduction">Introduction</a></h4> <p>The Trackback namespace enables an <a href="http://web.resource.org/rss/1.0/">RSS 1.0</a> or <a href="https://www.rssboard.org/rss-specification">RSS 2.0</a> syndication feed to support <a href="http://www.sixapart.com/pronet/docs/trackback_spec">trackback</a>, a protocol for peer-to-peer communication between web sites that publish related content.</p> <p>In its simplest form, trackback is a means of sending a message that lets a site know you've published a link to one of its pages.</p> <p>The message, which is called a <span class="newterm">trackback ping</span>, conveys three pieces of information from the sender to another site:</p> <ul> <li>I have published a web page about something on your site.</li> <li>Here's a text excerpt of what I have written.</li> <li>Here's a link to the page.</li> </ul> <p>In order to work, both the sender and the receiver must support the trackback protocol. Trackback pings are collected automatically and often presented in a manner similar to visitor comments.</p> <p>The ping must be sent to a <span class="newterm">trackback URL</span>, a script that understands trackback and can do something useful with the information. The trackback URL identifies the page that's being linked on the sender's site.</p> <h4 id="conventions">2. <a href="#conventions">Conventions</a></h4> <p>In this documentation, the key words <span class="rfc2119">may</span>, <span class="rfc2119">must</span>, <span class="rfc2119">must not</span>, <span class="rfc2119">optional</span>, <span class="rfc2119">recommended</span>, <span class="rfc2119">required</span>, <span class="rfc2119">shall</span>, <span class="rfc2119">shall not</span>, <span class="rfc2119">should</span> and <span class="rfc2119">should not</span> are to be interpreted as described in <a href="http://www.ietf.org/rfc/rfc2119.txt">RFC 2119</a>.</p> <h4 id="declaration">3. <a href="#declaration">Declaration</a></h4> <p>The Trackback namespace requires the "http://madskills.com/public/xml/rss/module/trackback/" declaration in the RSS element.</p> <p class="example">&lt;rss xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;</p> <p>Sample feeds demonstrate how to incorporate elements from this namespace in an <a href="https://www.rssboard.org/files/trackback-namespace-rss-1.xml">RSS 1.0</a> or <a href="https://www.rssboard.org/files/trackback-namespace-rss-2.xml">RSS 2.0</a> feed.</p> <h4 id="element-about">4. <a href="#element-about">trackback:about</a></h4> <p>The <span class="element">about</span> element, when present in an <a href="https://www.rssboard.org/rss-specification#hrelementsOfLtitemgt">item</a>, identifies a trackback URL on another site that was pinged in response to the item (<span class="rfc2119">optional</span>).</p> <p>An RSS 1.0 feed <span class="rfc2119">must</span> define the URL as the value of the element's <span class="attribute">resource</span> attribute in the RDF namespace.</p> <p class="example">&lt;trackback:about rdf:resource="http://ekzemplo.com/tb.cgi?tb_id=180"/&gt;</p> <p>An RSS 2.0 feed <span class="rfc2119">must</span> define the URL as the element's value.</p> <p class="example">&lt;trackback:about&gt;http://ekzemplo.com/tb.cgi?tb_id=180&lt;/trackback:about&gt;</p> <p>An item <span class="rfc2119">may</span> contain more than one <span class="element">about</span> element.</p> <h4 id="element-ping">5. <a href="#element-ping">trackback:ping</a></h4> <p>The <span class="element">ping</span> element, when present in an <a href="https://www.rssboard.org/rss-specification#hrelementsOfLtitemgt">item</a>, identifies the item's trackback URL (<span class="rfc2119">optional</span>).</p> <p>An RSS 1.0 feed <span class="rfc2119">must</span> define the URL as the value of the element's <span class="attribute">resource</span> attribute in the RDF namespace.</p> <p class="example">&lt;trackback:ping rdf:resource="http://dallas.example.com/trackback.php?id=3135"/&gt;</p> <p>An RSS 2.0 feed <span class="rfc2119">must</span> define the URL as the element's value.</p> <p class="example">&lt;trackback:ping&gt;http://dallas.example.com/trackback.php?id=3135&lt;/trackback:ping&gt;</p> <p>An item <span class="rfc2119">must not</span> contain more than one <span class="element">ping</span> element.</p> <h4 id="credits">6. <a href="#credits">Credits</a></h4> <p>The Trackback Namespace for RSS was created by <a href="http://justin.madskills.com">Justin Klubnik</a>, <a href="http://ben.stupidfool.org/">Benjamin Trott</a> and <a href="http://www.sixapart.com/about/corner/">Mena Trott</a>. Comments and corrections regarding this document are encouraged on the <a href="http://groups.yahoo.com/group/rss-public">RSS-Public</a> mailing list.</p> <h4 id="license">7. <a href="#license">License</a></h4> <div class="media cclicense"> <div class="media-left media-middle cclogo"> <p><a href="https://creativecommons.org/licenses/by-sa/2.0/" rel="nofollow"><img class="pull-left" src="https://www.rssboard.org/images/creative-commons-logo.gif" /></a></p> </div> <div class="media-body ccfineprint"> <p>Copyright 2024 <a href="https://www.rssboard.org/">RSS Advisory Board</a>. This document titled Trackback Namespace for RSS is authored by the <a href="https://www.rssboard.org/">RSS Advisory Board</a>, published at the URL <a href="https://www.rssboard.org/trackback">https://www.rssboard.org/trackback</a> and shared under the terms of the Creative Commons <a href="https://creativecommons.org/licenses/by-sa/2.0/" rel="nofollow">Attribution/Share Alike</a> license.</p> </div> </div> </div> <!-- End Main Content --> </div> <div class="col col-md-2 sidebar"> <!-- Begin Sidebar --> <p class="text-center"> <a href="/"><img src="/images/rss-feed-icon-96-by-96.png" width="96" alt="RSS icon" class="img-fluid"></a> </p> <div class="sidebargroup"> <div class="sidebartitle">Main Menu</div> <div class="sidebarlink"><a href="https://www.rssboard.org/">RSS Advisory Board</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-specification">RSS Specification</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-profile">RSS Profile</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-validator/">RSS Validator</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-autodiscovery">RSS Autodiscovery</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/advisory-board">Board Members</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/charter" rel="nofollow">Charter</a></div> <div class="sidebarlink"><a href="https://groups.google.com/g/rss-public">RSS-Public Mailing List</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-language-codes">RSS Language Codes</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rsscloud-interface">RSSCloud Interface</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-history">RSS History</a></div> </div> <div class="sidebargroup"> <div class="sidebartitle">RSS Feeds</div> <div class="sidebarrsslink"><a href="http://feeds.rssboard.org/rssboard" rel=\"nofollow\"><img src="/images/rss-icon.png" alt="Subscribe to Really Simple Syndication" border="0" width="16" height="16" /></a> <a href="http://feeds.rssboard.org/rssboard" rel=\"nofollow\">This Weblog</a></div> </div> <div class="sidebargroup"> <div class="sidebartitle">Social Media</div> <div class="sidebarlink"><a rel="me" href="https://mastodon.social/@rssboard">Mastodon</a></div> </div> <div class="sidebargroup"> <div class="sidebartitle">Spec Library</div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-specification">RSS 2.0 (Current)</a></div><div class="sidebarlink"><a href="https://www.rssboard.org/rss-2-0">RSS 2.0</a></div><div class="sidebarlink"><a href="https://www.rssboard.org/rss-0-9-2">RSS 0.92</a></div><div class="sidebarlink"><a href="https://www.rssboard.org/rss-0-9-1">RSS 0.91</a> (UserLand)</div><div class="sidebarlink"><a href="https://www.rssboard.org/rss-0-9-1-netscape">RSS 0.91</a> (Netscape)</div><div class="sidebarlink"><a href="https://www.rssboard.org/rss-0-9-0">RSS 0.90</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/rss-change-notes">RSS Change Notes</a></div> </div> <div class="sidebargroup"> <div class="sidebartitle">Namespaces</div> <div class="sidebarlink"><a href="https://www.rssboard.org/creative-commons">Creative Commons</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/media-rss">Media RSS</a></div> <div class="sidebarlink"><a href="https://www.rssboard.org/trackback">Trackback</a></div> </div> <div class="sidebargroup"> <div class="sidebartitle">Archive</div> <div class="sidebarlink"><a href="https://www.rssboard.org/site-index" rel="nofollow">Site Index</a></div> </div> <div class="sidebargroup"> <div class="sidebartitle">Board Members</div> <div class="sidebarlink">Rogers Cadenhead</div> <div class="sidebarlink">Sterling "Chip" Camden</div> <div class="sidebarlink">Simone Carletti</div> <div class="sidebarlink">James Holderness</div> <div class="sidebarlink">Jenny Levine</div> <div class="sidebarlink">Eric Lunt</div> <div class="sidebarlink">Randy Charles Morin</div> <div class="sidebarlink">Ryan Parman</div> <div class="sidebarlink">Jake Savin</div> <div class="sidebarlink">Jason Shellen</div> <div class="sidebarlink">Paul Querna</div> </div> <div class="sidebargroup"> <div class="sidebartitle">Other Formats</div> <div class="sidebarlink"><a href="https://datatracker.ietf.org/doc/html/rfc4287" rel="nofollow">Atom</a></div> <div class="sidebarlink"><a href="http://web.resource.org/rss/1.0/" rel="nofollow">RDF Site Summary</a></div> </div> <!-- End Sidebar --> </div> </div> <div class="row top10header"> <div class="col"> <h2 class="top10">Popular Pages on This Site</h2> </div> </div> <div class="row"> <div class="col"> <ul> <li><a href="https://www.rssboard.org/rss-validator/">RSS Validator</a></li> <li><a href="https://www.rssboard.org/media-rss">Media RSS Specification (Current)</a></li> <li><a href="https://www.rssboard.org/rss-specification">RSS 2.0 Specification</a></li> <li><a href="https://www.rssboard.org/rss-profile">RSS Best Practices Profile</a></li> <li><a href="https://www.rssboard.org/redirect-rss-feed">How to Redirect an RSS Feed</a></li> </ul> </div> <div class="col"> <ul> <li><a href="https://www.rssboard.org/rss-language-codes">RSS Language Codes</a></li> <li><a href="https://www.rssboard.org/rss-enclosures-use-case">Payloads for RSS</a></li> <li><a href="https://www.rssboard.org/rss-encoding-examples">RSS Encoding Examples</a></li> <li><a href="https://www.rssboard.org/rss-autodiscovery">RSS Autodiscovery</a></li> <li><a href="https://www.rssboard.org/news/212/read-rss-feed-php-using">How to Read an RSS Feed with PHP Using SimplePie</a></li> </ul> </div> </div></div> <!-- End Page --> <div class="footer"> <p><a href="/">RSS Advisory Board</a> | <a href="http://feeds.rssboard.org/rssboard">RSS Feed</a> | <a href="https://www.rssboard.org/rss-specification">RSS Specification</a> | Hosted by <a href="https://workbench.cadenhead.org/">Workbench</a></p> </div> </div> <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10