|
Posted by elyob on 03/13/06 21:34
Hi,
I'm just building a simple xmlrpc data pullback from the flickr API. It
should be simple enough, but I'm having problems.
Is there anything obviously incorrect in the following? It seems that the id
isn't being passed across. Thanks
----
$send = new xmlrpc_client("/services/xmlrpc", "www.flickr.com", 80);
$query=new xmlrpcmsg("flickr.photos.search",
array(new xmlrpcval($api_key, "int")));
$response = $send->send($query);
$value = $response->value();
----
Navigation:
[Reply to this message]
|