PHP XML-XML curl function not working. Please help

PHP XML-XML curl function not working. Please help

am 11.04.2008 13:25:47 von raj

Hi Everyone,

I'm trying to get the following php script to work with an ebay API. It
sends XML and then returns XML and formats it into links. THing is it
doesn;t work, and I'm not sure why. Can anyone see where I'm going
wrong?

Thank you in advance,

Raj


$query = 'ipod';

$endpoint = 'http://open.api.ebay.com/shopping?';

$resp =
simplexml_load_string(constructPostCallAndGetResponse($endpo int,
$query));

if ($resp) {
$results = '';

foreach($resp->Item as $item) {
$link = $item->ViewItemURLForNaturalSearch;
$title = $item->Title;

$results .= "
";
}
}

else {
$results = "Oops! Must not have gotten the response!";
}
?>




<br /> eBay Search Results for <?php echo $query; ?><br />



eBay Search Results for









function constructPostCallAndGetResponse($endpoint, $query)
{
$xmlRequest = "";
$xmlRequest .= " xmlns=\"urn:ebay:apis:eBLBaseComponents\">";
$xmlRequest .= "";
$xmlRequest .= $query;
$xmlRequest .= "
";

$session = curl_init($endpoint); // create a
curl session

curl_setopt($session, CURLOPT_POST, true); // POST request type
curl_setopt($session, CURLOPT_POSTFIELDS, $xmlRequest); // set the
body of the POST
curl_setopt($session, CURLOPT_RETURNTRANSFER, true); // return
values as a string - not to std out
$headers = array(
'X-EBAY-API-CALL-NAME: FindItemsAdvanced',
'X-EBAY-API-SITEID: 0', // Site 0
is for US
'X-EBAY-API-APP-ID: My ID Goes Here. Removed for security',
'X-EBAY-API-VERSION: 559',
"X-EBAY-API-REQUEST-ENCODING: XML",
'Content-Type: text/xml;charset=utf-8',
);
curl_setopt($session, CURLOPT_HTTPHEADER, $headers); //set
headers using the above array of headers

$responseXML = curl_exec($session); // send the request
curl_close($session);

return $responseXML; // returns a string
} // function
?>

Re: PHP XML-XML curl function not working. Please help

am 11.04.2008 14:37:47 von Captain Paralytic

On 11 Apr, 12:25, raj wrote:
> Hi Everyone,
>THing is it doesn;t work, and I'm not sure why.

Based on the statement "it doesn't work", I can tell you hat there is
something wrong.

If you would care to give us more information about precisely in what
way "it doesn't work", such as what actually happens when you try it,
we will try to give more refined suggestions.

Garbage in - garbage out.

Re: PHP XML-XML curl function not working. Please help

am 11.04.2008 14:56:05 von alvaroNOSPAMTHANKS

raj escribió:
> I'm trying to get the following php script to work with an ebay API. It
> sends XML and then returns XML and formats it into links. THing is it
> doesn;t work, and I'm not sure why. Can anyone see where I'm going wrong?

When I run the code you paste, the eBay server replies:

Application ID invalid

> 'X-EBAY-API-APP-ID: My ID Goes Here. Removed for security',

Ah, yep, this must be the reason.

My guess is that you have some silly typo in your code but since your
XML parser routines cannot handle error responses you don't even see the
error message. Just try this to see raw XML:

echo constructPostCallAndGetResponse($endpoint, $query);

Next time try to change "does not work" with something more informative
like "I see no error messages but the response is empty".



--
-- http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
-- Mi sitio sobre programación web: http://bits.demogracia.com
-- Mi web de humor al baño María: http://www.demogracia.com
--