Search Logger
Posts from: Yahoo! Web Services blog

Author Archive

Yahoo! Releases Web Services Returning Serialized PHP and PHP Developer Center

4:48 pm - February 22, 2006 in Yahoo! Web Services blog

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.

 

Announcing Release of Special Developers Edition of Yahoo! Widgets

5:21 pm - February 22, 2006 in Yahoo! Web Services blog

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.

 

More Sweetness from YUI and YPatterns

7:54 pm - May 9, 2006 in Yahoo! Web Services blog

You asked for more, and we listened. This is the second in ongoing releases for the incredibly popular Yahoo! User Interface and Yahoo! Design Patterns Libraries, and we've made improvements and given you new goodies to play with. Check it out:

  • New YUI controls for desktop-like user interface elements including menus, modules, panels, dialogs and tooltips.
  • A new hugely-configurable AutoComplete control.
  • A passel of CSS libraries to help with cross-browser normalization, layout and design.
  • Over a dozen new patterns in the Design Pattern Library, including transitions and invitations.

In addition, the library download itself has moved to Sourceforge. This lets Yahoo! UI library development team post patches and updates more frequently.

See more details on the Yahoo! UI Library and Yahoo! Design Patterns pages or over on the Yahoo! User Interface Blog.

- Your cheery YDN announcementeer

 

Yahoo! Maps? You Don’t Have to Ask.

9:37 pm - June 12, 2006 in Yahoo! Web Services blog

I’m very happy to announce tonight that we have lifted many of the restrictions associated with the Yahoo! Maps APIs. Until today, the APIs were available only for non-commercial use unless you applied for an exception. The concept of commercial and non-commercial has gone away and exceptions are no longer necessary in most cases. We have given you explicit Usage Policies to help guide you.

Whether on your business website, blog or personal site, you no longer have to ask for permission. Feel free to:

  • Build Mashups and use our Maps for personal or business use as long as the applications are free of charge and under the rate limit.
  • Link to Yahoo! Maps or Driving Directions to your heart’s content.
  • Include advertising on the same page or site where you display Yahoo! Maps.

There are still some Usage Policy so make sure to have a look at those.
Finally, please make sure to register your application because we love to see all the exciting stuff you’re doing with our APIs. Should you ever need an exception for any reason the first step is to register your app with us.

Vince Maniago & The Yahoo! Maps Team

 

Announcing a new, customizable Yahoo! Messenger! with SDK

9:24 pm - June 19, 2006 in Yahoo! Web Services blog

The Yahoo! Messenger with Voice team today launches a new version of Yahoo!
Messenger with Voice
which now let's developers build mini applications directly within the Yahoo! Messenger client! The new Plug-In framework and SDK means that developers can now build their own applications accessible within Yahoo! Messenger.

Developers of all skill levels can get started fast with the SDK creating applications ranging from simple HTML to ActiveX controls providing greater functionality and interactivity. You can build projects for yourself, or take advantage of the new section of Yahoo! Gallery to feature your Plug-Ins.

With the Yahoo! Plug-Ins Gallery, every Yahoo! Messenger user can check out your application - how cool is that? We can't see what you come up with and how much users love it.

 

Come meet us at OSCON

12:45 am - July 25, 2006 in Yahoo! Web Services blog

The Yahoo! Developer Network team and a bunch of other folks from Yahoo! are going to be out in full force at OSCON in Portland this week.

On the first day (Tuesday), Jeremy Zawodny and I are both participating in the Executive Briefing. Jeremy blogged today about his panel (The Ghost in the Machine: The Impact of Open Source on Web 2.0), which is about the use of open source at Yahoo! and how we give back to the community. I will be in the "hot seat" with Tim discussing (as Tim wrote) "the first shots that have already been fired in the open data wars" (here's the full session description). I'm looking forward to it.

Here is a list of the sessions in which my Yahoo! colleagues will be presenting:

At various time before, during, and after the sessions, Dan Theurer, Jason Levitt, Andrei Zmievski, Jeremy Zawodny, Rasmus Lerdorf and I will be hanging out at the Yahoo! Developer Network booth, so please do stop by and say hello and grab some goodies.

See you in Portland!

 
 
 
 
 
 
It's All About Search | © clsc.net |
2012.02.0716:46
Tech used here: Valid HTML - Valid CSS - Valid RSS - JavaScript - PHP - Smarty - MySQL - and a partridge in a pear tree.