For the sake of clarity and considerations of length, we placed the second example on a new page. Here it is: <!-- ws02.search.scd.yahoo.com uncompressed/chunked Wed --> */ // example using Yahoo! Video Search Web Service - search results try{ $request='http://search.yahooapis.com/VideoSearchService/V1/ // trigger the http request if(!$results=file_get_contents($request)){ throw new Exception('Error requesting Yahoo! Web service'); } // display the results in XML format header('Content-type:text/xml;charset=iso-8859-1'); echo $results; } catch(Exception $e){ echo $e->getMessage(); exit(); } /* displays the following <ResultSet xsi:schemaLocation="urn:yahoo:srchmv <Result> <Title>madonna_2004_montage.wmv</Title> <Summary>, interviews, news footage and tour clips from <Url>http://madonnalicious.com/downloads/madonna_2004_ <ClickUrl>http://madonnalicious.com/downloads/madonna_ <RefererUrl>http://www.descargaarchivos.com/noticias/index.php? <FileSize>22902293</FileSize> <FileFormat>msmedia</FileFormat> <Height>240</Height> <Width>320</Width> <Duration>464</Duration> <Streaming>false</Streaming> <Channels>2</Channels> <Thumbnail> <Url>http://scd.mm-so.yimg.com/image/1702970034</Url> <Height>105</Height> <Width>140</Width> </Thumbnail> </Result> <Result> <Title>madonna_earlscourt_190804.wmv</Title> <Summary>http://www.madonnalicious.com/downloads/ <Url>http://www.madonnalicious.com/downloads/madonna_ <ClickUrl>http://www.madonnalicious.com/downloads/ <RefererUrl>http://lounge.cosmopolitan.nl/messages/1/ <FileSize>42149471</FileSize> <FileFormat>msmedia</FileFormat> <Height>240</Height> <Width>320</Width> <Duration>543</Duration> <Streaming>false</Streaming> <Channels>2</Channels> <Thumbnail> <Url>http://scd.mm-so.yimg.com/image/1700163527</Url> <Height>105</Height> <Width>140</Width> </Thumbnail> </Result> <Result> <Title>madonna.al.et.mpg</Title> <Summary>Summary: Watch Madonna on Entertainment Tonight : <Url>http://steveswartz.com/madonna.al/madonna.al.et.mpg</Url> <ClickUrl>http://steveswartz.com/madonna.al/madonna.al.et.mpg</ClickUrl> <RefererUrl>http://www.descargaarchivos.com/noticias/index.php? <FileSize>12821508</FileSize> <FileFormat>mpeg</FileFormat> <Height>240</Height> <Width>352</Width> <Duration>73</Duration> <Streaming>false</Streaming> <Channels>2</Channels> <Thumbnail> <Url>http://scd.mm-so.yimg.com/image/1794815224</Url> <Height>98</Height> <Width>145</Width> </Thumbnail> </Result> <Result> <Title>madonna_jonathanross_ruperteverett.wmv</Title> <Summary>And Save Target As Friday Night With Jonathan Ross - <Url>http://www.madonnalicious.com/downloads/ <ClickUrl>http://www.madonnalicious.com/downloads/ <RefererUrl>http://www.descargaarchivos.com/noticias/index.php? <FileSize>2579729</FileSize> <FileFormat>msmedia</FileFormat> <Height>240</Height> <Width>320</Width> <Duration>85</Duration> <Streaming>false</Streaming> <Channels>2</Channels> <Thumbnail> <Url>http://scd.mm-so.yimg.com/image/1703473304</Url> <Height>105</Height> <Width>140</Width> </Thumbnail> </Result> </ResultSet> <!-- ws05.search.scd.yahoo.com uncompressed/chunked Wed Oct 17 --> */ Despite the lengthy source code of the two previous hands-on examples, the truth is that they’re very easy to understand. In the first case, a GET http request is triggered to the corresponding Yahoo! URL in order to use its popular Web Search Service. Note that in the query string I included first the corresponding application ID (which can be obtained by completing a simple registration form), then the search term “Madonna,” and finally the number of results that should be returned to the client. Next, the pertinent results are displayed on the browser in XML, wrapped by a pair of <ResultSet></ResultSet> nodes. Very simple to code and read, right? And finally, the last example looks very similar to the first one, but in this case, the Video Web Search service is used instead of performing a common search. So far, so good. At this time, hopefully you've recalled how to implement the previous Yahoo! Web Search Services directly from some simple PHP 5 scripts. What’s next? Well, as I explained in the beginning of this article, Yahoo! provides web developers with an additional “output” option for specifying in the query string which format the pertinent search result should be returned to the browser. If you're working with PHP, this “output” variable must have a value of “php” (output=php), which will cause all of the search results to be returned to the client in the form of a serialized PHP array. As you’ll realize, this feature can help, largely parsing these results using only a few PHP array processing functions, but this topic will be discussed in detail in the section to come. So read the next few lines. They’re just one click away
blog comments powered by Disqus |
|
|
|
|
|
|
|