There was an error while loading. Please reload this page.
You can make all is possible with the API. API permit to communicate with it in XML format or JSON format.
Request are posted to the API url, generally http://www.something.com/photoblog/api/, all request and response have same headers like explain below.
http://www.something.com/photoblog/api/
{ "method" : "...", "datas" : ... }
{ "status" : "valid", "datas" : ... }
{ "status" : "error", "code" : "...", "message" : "..." }
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <xml> <method>...</method> <datas>...</datas> </xml>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <xml> <status>valid</status> <datas>...</datas>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <xml> <status>error</status> <code>...</code> <message>...</message> </xml>
Home
QuickStart Example JSON Example XML Example Query String Authentication Upload Error Code API Summary