Blog ping interfaces

The XML-RPC interface follows standard industry practices for ping server interfaces.


The XML-RPC interface:

Just configure your blog software to call the autopinger ping interfaces whenever you update your content.

RPC endpoint: http://rpc.autopinger.com/

Method name: weblogUpdates.ping

Parameters:
1. name of site (string)
2. URL of site (string)

Returns: Struct with two members:
1. flerror (Boolean) which is true if an error occurred
2. message (string) which contains “Thanks for the ping, your blog is added to autopinger :-)” (if successful) or the error message

Example of XML-RPC request and response.

---- request ----
<?xml version="1.0" encoding="iso-8859-1"?>
<methodCall>
<methodName>weblogUpdates.ping</methodName>
<params>
  <param>
    <value><string>My blog title</string></value>
  </param>
  <param>
    <value><string>http://www.myblog.com</string></value>
  </param>
</params>
</methodCall>

 ---- response ----
<?xml version="1.0" encoding="ISO-8859-1"?>
<methodResponse>
<params>
  <param>
    <value>
      <struct>
        <member>
          <name>flerror</name>
          <value>0</value>
        </member>
        <member>
          <name>message</name>
          <value><string>Thanks for the ping, your blog is added to autopinger :-)</string></value>
        </member>
      </struct>
    </value>
  </param>
</params>
</methodResponse>

Home | Recent Blogs | Recent Podcasts | Blog | Forum | About | Quick Ping
This site also uses CookComputing's xmlrpc component developed by Charles Cook.
© Copyright 2006. Autopinger.com. All Rights Reserved. Terms | Privacy