0

How can you implement trackbacks on a custom-coded blog (written in C#)?

ThinkingStiff
  • 64,767
  • 30
  • 146
  • 239
Larsenal
  • 49,878
  • 43
  • 152
  • 220

3 Answers3

2

The TrackBack specification was created by Six Apart back in the day for their Movable Type blogging system. After some corporate changes it seems to be no longer available, but here's an archived version:

http://web.archive.org/web/20081228043036/http://www.sixapart.com/pronet/docs/trackback_spec

Michael Stum
  • 177,530
  • 117
  • 400
  • 535
  • 1
    This URL is no longer valid. Best its pointed to [archive.org](http://web.archive.org/web/20081228043036/http://www.sixapart.com/pronet/docs/trackback_spec) – Nishant Aug 17 '13 at 06:25
2

Personally, I wouldn't. Trackbacks became completely unusable years ago from all the spammers and even Akismet hasn't been enough to drag them back to usable (obviously IMO). The best way I've seen to handle trackbacks any more is to have a function that will turn an article's "referrer" (you are tracking those, right?) into a trackback (probably as a customized comment type). This leverages the meat-space processing that guarantees that no spam gets through and still allows you to easily recognize and enable further discussion.

Jacob Proffitt
  • 12,664
  • 3
  • 41
  • 47
-4

If you're custom coding your own blog you have too much time on your hands. Start with something like dasBlog or SubText and customize that to your needs. Then you get trackbacks for free.

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
  • i have subText and try to send them trackback locally from a week but that's not work ? any idea. –  Dec 05 '10 at 12:45