The App GardenCreate an App API Documentation Feeds What is the App Garden? |
XML-RPC Request Format
XML-RPC requests are specially formatted XML data posted to a URL. You can find out more about XML-RPC at www.xmlrpc.com/.
The XML-RPC Server Endpoint URL is https://www.flickr.com/services/xmlrpc/
To request the flickr.test.echo service, send a request like this:
<methodCall> <methodName>flickr.test.echo</methodName> <params> <param> <value> <struct> <member> <name>name</name> <value><string>value</string></value> </member> <member> <name>name2</name> <value><string>value2</string></value> </member> </struct> </value> </param> </params> </methodCall>
Note that the method name is sent seperately from the other request parameters.
If a parameter is specified, it should be a single struct member with the above formatting.
By default, XML-RPC requests will send a XML-RPC response.