| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Successful response returned for a Dailycounts request
- http://api.technorati.com/dailycounts?key=VALID_API_KEY&q=google
-
- Be aware that some test cases underlined how sometimes Technorati
- doesn't take care of its DTD.
- For instance, in the following response `item` node is invalid
- according to current DTD declaration.
-
- See http://framework.zend.com/issues/browse/ZF-2203
- -->
- <!-- generator="Technorati API version 1.0" -->
- <!DOCTYPE tapi PUBLIC "-//Technorati, Inc.//DTD TAPI 0.02//EN" "http://api.technorati.com/dtd/tapi-002.xml">
- <tapi version="1.0">
- <document>
- <result>
- <queryterm>google</queryterm>
- <days>5</days>
- <searchurl>http://technorati.com/search/google</searchurl>
- </result>
- <items>
- <item>
- <date>2007-11-14</date>
- <count>29067</count>
- </item>
- <item>
- <date>2007-11-13</date>
- <count>54414</count>
- </item>
- <item>
- <date>2007-11-12</date>
- <count>62171</count>
- </item>
- <item>
- <date>2007-11-11</date>
- <count>43494</count>
- </item>
- <item>
- <date>2007-11-10</date>
- <count>29390</count>
- </item>
- </items>
- </document>
- </tapi>
|