there are two examples on this page.
note: the methods for handling non-ASCII characters in names also works using our implementation of the weblogUpdates.ping method, but it is unknown if, or how well, the weblogs.com implementation of that interface handles non-ASCII characters.
here is an example of an XML-RPC ping using the weblogUpdates.extendedPing
for the blog "I ♥ São Paulo", located at
http://ilovesaopaulo.example.com/ with an rss feed at
http://ilovesaopaulo.example.com/index.rss.
some things to note:
POST / HTTP/1.0 Host: ping.blo.gs Content-Type: text/xml Content-Length: 394 <?xml version="1.0" encoding="iso-8859-1"?> <methodCall> <methodName>weblogUpdates.extendedPing</methodName> <params> <param> <value>I ♥ São Paulo</value> </param> <param> <value>http://ilovesaopaulo.example.com/</value> </param> <param> <value></value> </param> <param> <value>http://ilovesaopaulo.example.com/index.rss</value> </param> </params> </methodCall>
here is an example of an XML-RPC ping using the weblogUpdates.extendedPing
for the blog "The in São Paulo", located at
http://nbspsaopaulo.example.com/ with the actual url to check being
http://nbspsaopaulo.example.com/content.html.
some things to note:
POST / HTTP/1.0 Host: ping.blo.gs Content-Type: text/xml Content-Length: 402 <?xml version="1.0"?> <methodCall> <methodName>weblogUpdates.extendedPing</methodName> <params> <param> <value>The &nbsp; Space in São Paulo</value> </param> <param> <value>http://nbspsaopaulo.example.com/</value> </param> <param> <value>http://nbspsaopaulo.example.com/content.html</value> </param> <param> <value></value> </param> </params> </methodCall>