Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What it the difference between Pingback and Trackback?

What is the difference between the two names? Thanks.

like image 467
Moayad Mardini Avatar asked Sep 07 '09 17:09

Moayad Mardini


2 Answers

The pingback automatically finds URI’s in the post and pings them while a trackback needs to have a URI entered manually.

See this Whitepaper: Pingback vs Trackback

like image 119
RRUZ Avatar answered Oct 29 '22 15:10

RRUZ


Both Trackback and Pingback allow you to notify other URLs (webpages) that you linked to them from your page (e.g. a blog post).

The difference between both are:

  • Trackback uses a simple HTTP POST request to notify the other side, while Pingback uses XML-RPC.
  • Trackback support on the remote site has to be discovered by parsing the HTML source for some commented RDF, while the Pingback URL is sent as HTTP header.
  • By using the HTTP header, pingbacks are possible for files other than HTML, e.g. images and videos.
  • The Trackback specification leaves many things undefined, while the Pingback spec is very clear.
  • The pingback specification requires pingback receivers to check if the original URL contains a link to them. This is not necessary for trackbacks.

What the others said about "automatic": This has nothing to do with both specs. It's your blogging software that (automatically or not) sends requests to the remote servers for any links in your blog post.

like image 20
cweiske Avatar answered Oct 29 '22 16:10

cweiske