Technorati tag indexing

Of interest to Blog users is the new tag indexing service on Technorati. Technorati has started gathering tagged results from Flickr and del.icio.us and includes them in their index so you can search, for instance tag:nyc and retrieve all entries using that user supplied tag on those systems.

Blog systems that support categories can use the following elements, which technorati will index as tags:

<category>[tagname]</category>
<dc:subject>[tagname]</dc:subject>

I'm not sure what technorati will do with categories that have spaces in them, however, so that makes the use of existing categories questionable. It would be nice if they remove the spaces in those categories or something.

If your web publishing software doesn't support categories or if you don't know how to configure them to add categories to your RSS feed, you can include a link that identifies your entry with a tag and technorati will index it, e.g. <a href="http://technorati.com/tag/[tagname]" rel="tag">[tagname]</a>. This also seems particularly useful for tagging wikis or manually created html pages.

If this indexing takes off as a system for aggregating topics across different sites, I can imagine that a lot of people might start to become interested in creating controlled tag lists. If the tags are unique enough then this might be a usable system until someone creates an service that is solely dedicated to this type of cross-site topic mapping.

Here's an example of how you might hack together a process to use on Technorati. Create a tag set that prepends each tag with a long string followed by the tag, e.g. drupal-bloggers-[tag], and get everyone in your community to start using that tag as their category. Make sure your blog system puts out the category in RSS or Atom feeds. Then every term that uses that tag will be aggregated in Technorati. Problem is that Technorati is not providing an XML feed for the results, so you can't actually aggregate them in your own RSS reader. They do have an API, however, so I'm sure someone could create an application that takes advantage of this tag indexing. I wonder how long it will take before Feedster does.

So here's the open question to Drupal developers. Can we get categories in our RSS feeds? We Drupal users already have RSS feeds by taxonomy (e.g. at the bottom of any of my category pages there is an XML feed button), but it would be nice if we can get our categories indexed by Technorati as well. I'd love to do a proof of concept for community tagging around a topic. The participants could create a community-editable page to manage the master list of tags to use for something like Drupal related topics. Then we get our blogs to output tags in RSS.

[Technorati tags: , , ]

Comments

01 Christina Pikas
03/14/05 @ 16:26

I think it actually keeps them as a phrase... If you have a blogger blog and need to manually tag, you use rel="first+second+third" (for example, rel="business+blogging"). Looks like for other blogs it sees a category "business blogging" as the same as the above. In other words, everything between the category tags is kept as a phrase.

Christina Pikas
http://christinaslibraryrant.blogspot.com

02 jibbajabba
03/14/05 @ 17:18

Thanks, Christina.

I'm mostly interested in how this is done in the XML feed. I'm wondering if that means you would use multiple [tagname] elements if you want to include multiple tags. But I'm not sure you are supposed to do that in the XML. (Update: Apparently multiple categories are allowed in RSS 2 and multiple dc:subject elements in Atom.)

I think the correct format for your link example is like this:

<a href="http://www.technorati.com/tag/business%20blogging" rel="tag">business blogging</a>

That's what you would put in your blog entry for it to be indexed under the "business blogging" tag. See for example how Kim Bayne inserted her links for the "business blogging" tag at the bottom of this blog entry on the MarketingWireless blog. That link got her entry indexed on technorati's business blogging tag.

Will have to experiment with using links here, but am more interested in getting subject elements into the Drupal XML feeds.

Advertisement
03 Christina Pikas
03/15/05 @ 10:03

From another of my blogs:
"Ongoing > Ten Reasons Why Blogging is Good For Your Career
17 hours ago
Pointed out on Blogger Buzz (the blogger staff blog). A common question posed to bloggers is, "aren't you afraid you're going to be fired?" This list...
ASIST K-Blog Panel Get Conversations 2 links from 2 sources"

That was using a manual tag with the rel=corporate+blogging

Christina Pikas
http://christinaslibraryrant.blogspot.com

04 jibbajabba
03/15/05 @ 11:35

I wasn't arguing about the plus sign. I wouldn't doubt that their search engine accepts plus (+) signs in place of the %20 character.

I was just pointing out that the relationship (rel="" in your anchor tag) is not "business+blogging" the relationship is "tag". In the K-Blog panel, you correctly format the link this way: <href="http://technorati.com/tag/Business+Blogging" rel="tag">. Not with <a href="" rel="business+blogging">. So just want to make sure this communicated. A minor point, but perhaps relevant to people who are interested in using the link method rather than the XML method.

In any case, thanks for that. It's a cool service and since I'm now putting out categories in my Atom feed, hopefully my tags will get picked up soon.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <b> <strong> <dd> <dl> <dt> <i> <li> <ol> <u> <ul> <code> <blockquote>
  • Lines and paragraphs break automatically.
  • Web page addresses and e-mail addresses turn into links automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options