Zend_Service_TechnoratiIntroductionZend_Service_Technorati provides an easy, intuitive and object-oriented interface for using the Technorati API. It provides access to all available » Technorati API queries and returns the original XML response as a friendly PHP object. » Technorati is one of the most popular blog search engines. The API interface enables developers to retrieve information about a specific blog, search blogs matching a single tag or phrase and get information about a specific author (blogger). For a full list of available queries please see the » Technorati API documentation or the Available Technorati queries section of this document. Getting StartedTechnorati requires a valid API key for usage. To get your own API Key you first need to » create a new Technorati account, then visit the » API Key section.
Once you have a valid API key, you're ready to start using Zend_Service_Technorati. Making Your First QueryIn order to run a query, first you need a Zend_Service_Technorati instance with a valid API key. Then choose one of the available query methods, and call it providing required arguments. Example #1 Sending your first query
Each query method accepts an array of optional parameters that can be used to refine your query. Example #2 Refining your query
A Zend_Service_Technorati instance is not a single-use object. That is, you don't need to create a new instance for each query call; simply use your current Zend_Service_Technorati object as long as you need it. Example #3 Sending multiple queries with the same Zend_Service_Technorati instance
Consuming ResultsYou can get one of two types of result object in response to a query.
The first group is represented by
Zend_Service_Technorati_*ResultSet objects. A result set object
is basically a collection of result objects. It extends the basic
Zend_Service_Technorati_ResultSet class and implements the
Example #4 Consuming a result set object
Because Zend_Service_Technorati_ResultSet implements the
Example #5 Seeking a specific result set object
The second group is represented by special standalone result objects. Zend_Service_Technorati_GetInfoResult, Zend_Service_Technorati_BlogInfoResult and Zend_Service_Technorati_KeyInfoResult act as wrappers for additional objects, such as Zend_Service_Technorati_Author and Zend_Service_Technorati_Weblog. Example #6 Consuming a standalone result object
Please read the Zend_Service_Technorati Classes section for further details about response classes. Handling ErrorsEach Zend_Service_Technorati query method throws a Zend_Service_Technorati_Exception exception on failure with a meaningful error message. There are several reasons that may cause a Zend_Service_Technorati query to fail. Zend_Service_Technorati validates all parameters for any query request. If a parameter is invalid or it contains an invalid value, a new Zend_Service_Technorati_Exception exception is thrown. Additionally, the Technorati API interface could be temporally unavailable, or it could return a response that is not well formed.
You should always wrap a Technorati query with a Example #7 Handling a Query Exception
Checking Your API Key Daily UsageFrom time to time you probably will want to check your API key daily usage. By default Technorati limits your API usage to 500 calls per day, and an exception is returned by Zend_Service_Technorati if you try to use it beyond this limit. You can get information about your API key usage using the Zend_Service_Technorati::keyInfo() method. Zend_Service_Technorati::keyInfo() returns a Zend_Service_Technorati_KeyInfoResult object. For full details please see the » API reference guide. Available Technorati QueriesZend_Service_Technorati provides support for the following queries: Technorati Cosmos» Cosmos query lets you see what blogs are linking to a given URL. It returns a Zend_Service_Technorati_CosmosResultSet object. For full details please see Zend_Service_Technorati::cosmos() in the » API reference guide. Example #9 Cosmos Query Technorati SearchThe » Search query lets you see what blogs contain a given search string. It returns a Zend_Service_Technorati_SearchResultSet object. For full details please see Zend_Service_Technorati::search() in the » API reference guide. Example #10 Search Query Technorati TagThe » Tag query lets you see what posts are associated with a given tag. It returns a Zend_Service_Technorati_TagResultSet object. For full details please see Zend_Service_Technorati::tag() in the » API reference guide. Example #11 Tag Query Technorati DailyCountsThe » DailyCounts query provides daily counts of posts containing the queried keyword. It returns a Zend_Service_Technorati_DailyCountsResultSet object. For full details please see Zend_Service_Technorati::dailyCounts() in the » API reference guide. Technorati TopTagsThe » TopTags query provides information on top tags indexed by Technorati. It returns a Zend_Service_Technorati_TagsResultSet object. For full details please see Zend_Service_Technorati::topTags() in the » API reference guide. Example #13 TopTags Query Technorati BlogInfoThe » BlogInfo query provides information on what blog, if any, is associated with a given URL. It returns a Zend_Service_Technorati_BlogInfoResult object. For full details please see Zend_Service_Technorati::blogInfo() in the » API reference guide. Example #14 BlogInfo Query
Technorati BlogPostTagsThe » BlogPostTags query provides information on the top tags used by a specific blog. It returns a Zend_Service_Technorati_TagsResultSet object. For full details please see Zend_Service_Technorati::blogPostTags() in the » API reference guide. Example #15 BlogPostTags Query Technorati GetInfoThe » GetInfo query tells you things that Technorati knows about a member. It returns a Zend_Service_Technorati_GetInfoResult object. For full details please see Zend_Service_Technorati::getInfo() in the » API reference guide. Example #16 GetInfo Query Technorati KeyInfoThe KeyInfo query provides information on daily usage of an API key. It returns a Zend_Service_Technorati_KeyInfoResult object. For full details please see Zend_Service_Technorati::keyInfo() in the » API reference guide. Zend_Service_Technorati Classes
The following classes are returned by the various Technorati queries. Each
Zend_Service_Technorati_*ResultSet class holds a type-specific
result set which can be easily iterated, with each result being contained in a type
result object. All result set classes extend
Zend_Service_Technorati_ResultSet class and implement the
The Zend_Service_Technorati library includes additional convenient classes representing specific response objects. Zend_Service_Technorati_Author represents a single Technorati account, also known as a blog author or blogger. Zend_Service_Technorati_Weblog represents a single weblog object, along with all specific weblog properties such as feed URLs or blog name. For full details please see Zend_Service_Technorati in the » API reference guide. Zend_Service_Technorati_ResultSetZend_Service_Technorati_ResultSet is the most essential result set. The scope of this class is to be extended by a query-specific child result set class, and it should never be used to initialize a standalone object. Each of the specific result sets represents a collection of query-specific Zend_Service_Technorati_Result objects.
Zend_Service_Technorati_ResultSet implements the
PHP Example #17 Iterating result objects from a resultset collection
Zend_Service_Technorati_CosmosResultSetZend_Service_Technorati_CosmosResultSet represents a Technorati Cosmos query result set.
Zend_Service_Technorati_SearchResultSetZend_Service_Technorati_SearchResultSet represents a Technorati Search query result set.
Zend_Service_Technorati_TagResultSetZend_Service_Technorati_TagResultSet represents a Technorati Tag query result set.
Zend_Service_Technorati_DailyCountsResultSetZend_Service_Technorati_DailyCountsResultSet represents a Technorati DailyCounts query result set.
Zend_Service_Technorati_TagsResultSetZend_Service_Technorati_TagsResultSet represents a Technorati TopTags or BlogPostTags queries result set.
Zend_Service_Technorati_ResultZend_Service_Technorati_Result is the most essential result object. The scope of this class is to be extended by a query specific child result class, and it should never be used to initialize a standalone object. Zend_Service_Technorati_CosmosResultZend_Service_Technorati_CosmosResult represents a single Technorati Cosmos query result object. It is never returned as a standalone object, but it always belongs to a valid Zend_Service_Technorati_CosmosResultSet object.
Zend_Service_Technorati_SearchResultZend_Service_Technorati_SearchResult represents a single Technorati Search query result object. It is never returned as a standalone object, but it always belongs to a valid Zend_Service_Technorati_SearchResultSet object.
Zend_Service_Technorati_TagResultZend_Service_Technorati_TagResult represents a single Technorati Tag query result object. It is never returned as a standalone object, but it always belongs to a valid Zend_Service_Technorati_TagResultSet object.
Zend_Service_Technorati_DailyCountsResultZend_Service_Technorati_DailyCountsResult represents a single Technorati DailyCounts query result object. It is never returned as a standalone object, but it always belongs to a valid Zend_Service_Technorati_DailyCountsResultSet object.
Zend_Service_Technorati_TagsResultZend_Service_Technorati_TagsResult represents a single Technorati TopTags or BlogPostTags query result object. It is never returned as a standalone object, but it always belongs to a valid Zend_Service_Technorati_TagsResultSet object.
Zend_Service_Technorati_GetInfoResultZend_Service_Technorati_GetInfoResult represents a single Technorati GetInfo query result object. Zend_Service_Technorati_BlogInfoResultZend_Service_Technorati_BlogInfoResult represents a single Technorati BlogInfo query result object. Zend_Service_Technorati_KeyInfoResultZend_Service_Technorati_KeyInfoResult represents a single Technorati KeyInfo query result object. It provides information about your Technorati API Key daily usage.
|
|