Hi,
On Apr 28, 1:40 am, MajusC00L <
MajusC...@gmail.com> wrote:
> Is xml-rpc mandatory to post request? Is the Fotolia api capable of
> receiving standard POST request issued by HTML <FORM> (with GET or
> POST method) ? What would be the URL to post such a request? I guess
> it's not the same "/xmlrpc/rpc" used by xml-rpc.php ?
Fotolia API is using XML-RPC standard. So if you want to be able to
use the API,
you have to send valid XML-RPC requests, a simple http post with form
data won't do the job.
> Does anyone reckon that the PHP built in "simplexml()" would be
> sufficient to parse the results?
Yes it would be sufficient although it would reinvent the wheel as
there are quite a lot of xml-rpc parser available out there.
For instance, php4 and php5 provide a build-in xml-rpc encoder/decoder
(see
http://www.php.net/xmlrpc)
Hope this helps
Olivier