| Contents:
XML-RPC Pinging Interface
Request URL: http://feedoor.com/api/feed
Request Method: Post
Ping Method: weblogUpdates.ping
Parameters: Must be in the exact order as below
- Name or the title of your Blog/Site
- URL of your feed
Example XML-RPC Request:
POST /RPC2 HTTP/1.0
User-Agent: Perl
Host: feedoor.com
Content-Type: text/xml
Content-length: 430
<?xml version="1.0"?>
<methodCall>
<methodName>weblogUpdates.ping</methodName>
<params>
<param>
<value>something for a title</value>
</param>
<param>
<value>http://your-feed-url.com/rss.xml</value>
</param>
</params>
</methodCall> |
Example XML-RPC Response:
HTTP/1.1 200 OK
Connection: close
Content-Length: 650
Content-Type: text/xml
<?xml version="1.0"?>
<methodResponse>
<params>
<param>
<value>
<struct>
<member>
<name>flerror</name>
<value>
<boolean>0</boolean>
</value>
</member>
<member>
<name>message</name>
<value>Thanks for the ping.</value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
|
REST Pinging Interface
Request URL: http://feedoor.com/api/feed
Request Method: Get
Parameters:
- url = your feed url address (required)
Example REST Request:
| http://feedoor.com/api/ping?url=http://your-feed-address.com/rss.xml |
Example REST Response
REST responses will be in plain text with "thank you for the ping" for the success and "Error: reason" in case of an error pinging
|