2

I'm currently writing the pinging-back code of a blogging platform. Pingbacks work at localhost, but I want to test if they work when pinging a 3rd-party service. Is there any website or any other solution which will show me once it received a pingback from me?

Thanks.

Moayad Mardini
  • 7,271
  • 5
  • 41
  • 58

3 Answers3

2

You can create a blog account on a free blogging service (like blogger.com) and test your pingback implementation.

Pop Catalin
  • 61,751
  • 23
  • 87
  • 115
  • 1
    I think that doesn't work. I believe those types of blogs accept trackbacks only, which differs in format from pingbacks. – Moayad Mardini Sep 09 '09 at 15:45
2

Both http://www.typepad.com/ and http://wordpress.com/ support pingbacks and can be used for free.

Alex Balabanov
  • 581
  • 3
  • 11
1

There is a "pingbacktest" wordpress blog that accepts pingbacks:

http://pingbacktest.wordpress.com/2008/01/15/hello-world/

If you send a pingback with some URL that links to it, you'll get

<?xml version="1.0" encoding="UTF-8"?>
<methodResponse>
  <params>
    <param>
      <value>
      <string>Pingback from http://foo to http://pingbacktest.wordpress.com/2008/01/15/hello-world/ registered. Keep the web talking! :-)</string>
      </value>
    </param>
  </params>
</methodResponse>
cweiske
  • 30,033
  • 14
  • 133
  • 194