YDN Blog Archive: February 2006
« Previous | Main | Next »
February 22, 2006
Announcing Release of Special Developers Edition of Yahoo! Widgets
With the release of the Yahoo! Widgets Developer SDK for Windows, developers can download one handy bundle with all of the tools they need to get started building great Widgets. This kit includes a streamlined version of the Widget Engine 3.0 installer plus additional documentation, a handy creation script and a cool new tutorial.
In the future this SDK will be your one-stop shop for future software updates and new developer resources to help you keep up to date with the latest advances in Widget technology. Pull it down today and take your Widget making to the next level, and keep an eye on the Widgets Workshop for new releases and updates.
Posted at 2:21 PM | Comments (1)
Yahoo! Releases Web Services Returning Serialized PHP and PHP Developer Center
Today we're launching our new PHP Developer Center and announcing that many of our web services now return serialized PHP. PHP developers will now be able to consume these web services even more easily than before.
Yahoo!'s Search, Maps, and Travel REST web services now return serialized PHP by simply adding the output=php parameter to any web services request.
For example, suppose you want to search for PHP-related podcasts and return the first five results using our Podcast Search service:
http://api.search.yahoo.com/AudioSearchService/ V1/podcastSearchappid=YahooDemo&query=PHP& results=5&output=php
The request above returns the results as serialized PHP. A simple PHP script can trivially parse the request using PHP's unserialize function which is built-in to all PHP4 and PHP5 implementations:
<?php
$request='http://api.search.yahoo.com/ AudioSearchService/V1/podcastSearch?appid=YahooDemo& query=PHP&results=5&output=php';
$result = file_get_contents($request);
$phparray = unserialize($result);
echo '<pre>';
print_r($phparray);
echo '</pre>';
?>
Or, perhaps you'd like to see a list of public trips to Australia using Yahoo!'s Travel web service:
<?php
$request='http://api.travel.yahoo.com/TripService/ V1/tripSearch?appid=YahooDemo& query=australia&results=10&output=php';
$result = file_get_contents($request);
$phparray = unserialize($result);
echo '<pre>';
print_r($phparray);
echo '</pre>';
?>
With this release, we're continuing to push out the standards for developer-friendliness with our web services offerings. For more information, and a complete list of Yahoo! developer APIs, check out the Yahoo! Developer Network web site.
Posted at 1:48 PM | Comments (4)
Subscribe
Recent Blog Articles
view all
The state of mobile browsers - PPK in London
Thu, 02 Jul 2009
GeoMaker - Turning web content into maps made easy
Wed, 01 Jul 2009
Tue, 30 Jun 2009
Hacking Up North : Winners of the Sunderland Hack Challenge
Fri, 26 Jun 2009
ConvergeSC web event comes to South Carolina
Wed, 24 Jun 2009
Recent Links
Junta42 blog: News Flash: Guardian Seeks to Grow through Products, Not Content
Fri, 03 Jul 2009
Twitter Approval Matrix - June 2009 - O'Reilly Radar
Thu, 02 Jul 2009
YUI 3.0 with Jonathan LeBlanc from the Yahoo Developer Network | Unmatched Style
Wed, 01 Jul 2009
Yahoo! Search Blog: VoCampers Converge at Yahoo! Headquarters in Sunnyvale
Thu, 25 Jun 2009
Make: Online : Dorkbot London June 23
Mon, 22 Jun 2009
Archives
2009
2008
2007
2006
2005

