<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Will Norris &#187; oauth</title>
	<atom:link href="http://willnorris.com/tag/oauth/feed" rel="self" type="application/rss+xml" />
	<link>http://willnorris.com</link>
	<description>there&#039;s more to life than this</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:41:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
		<item>
		<title>The Open Stack (in PHP)</title>
		<link>http://willnorris.com/2009/03/the-open-stack-in-php</link>
		<comments>http://willnorris.com/2009/03/the-open-stack-in-php#comments</comments>
		<pubDate>Thu, 19 Mar 2009 20:35:43 +0000</pubDate>
		<dc:creator>Will Norris</dc:creator>
				<category><![CDATA[identity]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[diso]]></category>
		<category><![CDATA[lrdd]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[open stack]]></category>
		<category><![CDATA[openid]]></category>
		<category><![CDATA[xrd]]></category>
		<category><![CDATA[xrds]]></category>
		<category><![CDATA[xrds-simple]]></category>

		<guid isPermaLink="false">http://willnorris.com/?p=533</guid>
		<description><![CDATA[A couple of months or so ago, I made a conscious shift in my focus with the DiSo Project. Instead of continuing to concentrate on some of the higher level deliverables like WordPress plugins, I decided it was time to step back and evaluate where the development community (specifically the PHP development community) is with [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months or so ago, I made a conscious shift in my focus with the <a href="http://diso-project.org/">DiSo Project</a>.  Instead of continuing to concentrate on some of the higher level deliverables like WordPress plugins, I decided it was time to step back and evaluate where the development community (specifically the PHP development community) is with the Open Stack.  For the purposes of this discussion, I&#8217;m going to use <a href="http://netmesh.info/jernst/2008/11/05">Johannes Ernst&#8217;s</a> redux of <a href="http://www.flickr.com/photos/56624456@N00/3020508770/">John McCrea&#8217;s</a> Open Stack graphic.  I&#8217;m also only going to concentrate on three of the middle components: Metadata Discovery, Authentication, and Access Control.</p>

<p><img src="http://farm4.static.flickr.com/3462/3367793731_45903b3cab_o.png" alt="The Open Stack" title="The Open Stack" style="display: block; border: 1px solid #000; margin: auto; padding: 1px;" /></p>

<p><span id="more-533"></span></p>

<h2>PHP</h2>

<p>First a quick note, to make sure this discussion does not get derailed.  There is a time and a place to talk about these topics in the abstract.  That is incredibly important work, especially in the development of these specifications, but that&#8217;s not what I&#8217;m currently interested in.  I&#8217;m focused on developing solid PHP libraries to implement these technologies.  Why PHP?  Because that&#8217;s what WordPress uses, which is the current platform I&#8217;m targeting with the work I&#8217;m doing in DiSo.  I know that PHP isn&#8217;t as sexy as Python or Ruby, but it&#8217;s what we&#8217;re using.  I agree that we need solid libraries written in these other languages as well, but that&#8217;s not my focus.  PHP is widely deployed and used, including companies very involved in implementing the Open Stack like Facebook and Plaxo (Luke, Joseph &#8212; I&#8217;m expecting some help from you guys :) ).</p>

<p>I&#8217;ll also note that I&#8217;m specifically targeting PHP 5.  PHP 4 is no longer supported, and maintaining backwards compatibility (especially when talking about XML parsing) is a complete pain.  This creates a problem with getting code into WordPress core, but I&#8217;m okay with that&#8230; they&#8217;ll move to PHP 5 eventually.</p>

<h2>OpenID</h2>

<p>Let&#8217;s start with the most mature library we&#8217;ve got.  JanRain made a huge name for themselves in the OpenID community a couple of years ago by providing <a href="http://openidenabled.com/">open source libraries</a> in a number of different languages, including of course PHP.  Like any library, there are a few weird things here and there, but by and large it is an excellent implementation that has served the community (including this developer) very well.  Last week, <a href="http://openid.net/pipermail/code/2009-March/000000.html">JanRain announced</a> that they were restructuring the development process of the PHP library to make it more open to developers.  The code itself has moved from their internal darcs repository <a href="http://github.com/bce/php-openid/">to github</a>, they&#8217;ve added <a href="http://www.sociallipstick.com/">Luke Shepard</a> of Facebook and myself as committers, and releases, bug tracking, etc will eventually be moved to the Google Code project.  Going forward, we&#8217;ll be looking at trimming down the library a bit, removing support in core for older protocol versions and edge cases that weren&#8217;t really used, and overall making it easier for developers to use.</p>

<h2>OAuth</h2>

<p>There are two OAuth PHP libraries that I&#8217;m aware of, the &#8220;official&#8221; library stored in the <a href="http://code.google.com/p/oauth/source/browse/#svn/code/php">OAuth Google Code project</a>, and the <a href="http://code.google.com/p/oauth-php/source/browse/#svn/trunk/library">Mediamatic library</a> from Marc Worrell.  The former library seems to have more users because of it&#8217;s exposure from the OAuth website, and is <strong>much</strong> lighter weight than the Mediamatic library (too much so for my taste).  I initially chose the Mediamatic library for my work in getting OAuth working with WordPress, but eventually found some problems with the general library architecture.  After <a href="http://groups.google.com/group/oauth-php/browse_thread/thread/e78feefe1d568c87">some discussion</a> with developers of both libraries, I&#8217;ve begun work on a <a href="http://github.com/willnorris/oauth-php/">new OAuth library</a>.  I re-architected the library from scratch, and then used a combination of the two libraries for much of the actual implementations.  It&#8217;s probably about 80+ percent done, and should hopefully provide something both communities can work with.</p>

<h2>Metadata Discovery</h2>

<p>Discovery has certainly received the least amount of love from the development community, which is a bit ironic given that it&#8217;s a foundational part of almost every application of the Open Stack.  There&#8217;s no shortage of metadata discovery and parsing libraries: Joseph Smarr contributed one to the <a href="http://code.google.com/p/xrds-simple/source/browse/code/php/XrdsSimpleParser.php">xrds-simple Google Code repository</a>, the OpenID library <a href="http://github.com/bce/php-openid/tree/master/Auth/Yadis">has its own</a>, and the Mediamatic OAuth library <a href="http://code.google.com/p/oauth-php/source/browse/trunk/library/discovery/xrds_parse.php">has its own</a>.  Yet amazingly, none of these help you at all if you&#8217;re wanting to manipulate or publish a metadata document.  They&#8217;re all half-baked, each written for a very specific use-case.  What we need is a full implementation of the discovery protocols.  And that, of course, is where it gets a little more complicated&#8230;</p>

<p><strong>Disclaimer</strong>: If you really want everything there is to know about this subject, go read the writings of <a href="http://www.hueniverse.com/">Eran Hammer-Lahav</a>&#8230; I&#8217;m just going to gloss over it a bit.</p>

<p>Metadata discovery includes two steps: you need to know how to get the metadata about a resource, and you need to know what format that metadata is in so that you can parse it and make sense of it.  OpenID uses a technology known as <a href="http://yadis.org/">Yadis</a> to retrieve the metadata document, which is in an XML language known as <a href="http://en.wikipedia.org/wiki/XRDS">XRDS</a> (Extensible Resource Descriptor Sequence).  <a href="http://oauth.net/discovery/">OAuth Discovery</a> uses a combined and simplified version of these two known as <a href="http://xrds-simple.net/">XRDS-Simple</a>.  Discovery for OpenID and OAuth is more-or-less compatible.</p>

<p>Now, there is also work being done in the <a href="http://www.oasis-open.org/committees/xri/">OASIS XRI TC</a> (of which I&#8217;m a member) to develop the simpler, and more uniform successor to these protocols.  Retrieval of the metadata will use a collection of methods known as <a href="http://www.hueniverse.com/hueniverse/2009/03/the-discovery-protocol-stack.html">LRDD</a> (pronounced &#8220;lard&#8221;), while the metadata     itself will be in a much simpler format known as <a href="http://www.hueniverse.com/hueniverse/2009/03/xrd-document-structure.html">XRD</a>.  While identical in spirit, these are complete rewrites of the previous specs.  The new specs are not compatible with the old, but they are also designed so that they do not conflict either, so that both may be used simultaneously.  Shifting to these new discovery protocols will certainly not be easy, but believe me when I tell you that it will be worth it.  In fact, it&#8217;s absolutely essential for players like Google to implement OP-driven identifier selection (allowing users to login with OpenID by simply entering &#8220;gmail.com&#8221;).</p>

<p>So as I said earlier, we don&#8217;t have any real good discovery libraries for PHP.  As part of my work on WordPress, I started development on a <a href="http://github.com/willnorris/php-xrd/tree/master">XRDS-Simple library</a> in PHP.  More recently, I created a <a href="http://github.com/willnorris/php-xrd/tree/XRD">separate branch</a> of the code which implements LRDD+XRD exclusively.  Realistically, we&#8217;ll probably need a library which handles both the old and new protocols for a while.  The idea would be that none of the higher level libraries like OpenID or OAuth need worry about metadata discovery, except for maybe a lightweight wrapper around the discovery library.  The new OAuth library I&#8217;m working on will do this from day one; the existing OpenID library will take a little while, but I think we&#8217;ll eventually see it rely on a separate library for discovery.</p>

<h2>Feedback and Help</h2>

<p>First of all, I welcome any feedback on the implementations that currently exist, especially the OAuth and discovery libraries I&#8217;m working on.  They are not complete and most certainly not production ready, but they&#8217;re getting close.  I&#8217;d also like to solicit development help, especially from people with larger deployments and/or a vested interest in this technology.  All the new development is happening on github, so creating a clone to hack on is incredibly simple.  Even if you don&#8217;t have development cycles you can put into this, I&#8217;ve already got at least one technical decision I need to make that I&#8217;d love feedback on, which I&#8217;ll be covering in my next post: &#8220;<a href="http://willnorris.com/2009/03/http-client-library-for-php">Why Does HTTP Suck So Much in PHP</a>&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://willnorris.com/2009/03/the-open-stack-in-php/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Authentication in WordPress 2.8</title>
		<link>http://willnorris.com/2009/03/authentication-in-wordpress-28</link>
		<comments>http://willnorris.com/2009/03/authentication-in-wordpress-28#comments</comments>
		<pubDate>Tue, 10 Mar 2009 20:50:07 +0000</pubDate>
		<dc:creator>Will Norris</dc:creator>
				<category><![CDATA[identity]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[diso]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[openid]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xmlrpc]]></category>

		<guid isPermaLink="false">http://willnorris.com/?p=508</guid>
		<description><![CDATA[Use Case I&#8217;ve spent a lot of time working with the WordPress authentication system. I took over the OpenID plugin for WordPress two years ago, and was hired by Vidoop last May to work on the DiSo Project full time. Last summer, Matt Mullenweg invited me to talk at WordCamp SF 2008 about OAuth. As [...]]]></description>
			<content:encoded><![CDATA[<h2>Use Case</h2>

<p>I&#8217;ve spent a <strong>lot</strong> of time working with the WordPress authentication system.  I took over the <a href="http://wordpress.org/extend/plugins/openid/">OpenID plugin</a> for WordPress two years ago, and <a href="http://willnorris.com/2008/05/why-im-going-to-vidoop">was hired by Vidoop</a> last May to work on the <a href="http://diso-project.org/">DiSo Project</a> full time.  Last summer, Matt Mullenweg invited me to talk at <a href="http://2008.sf.wordcamp.org/">WordCamp SF 2008</a> about OAuth.  As you can see in my <a href="http://www.slideshare.net/willnorris/wordpress-oauth-presentation">slidedeck</a>, it was a lot of smoke and mirrors at that point&#8230; we didn&#8217;t have OAuth in WordPress, although it was on the roadmap for 2.7.</p>

<p>We&#8217;ve had an OAuth plugin for a little while that <a href="http://singpolyma.net/">Stephen Paul Weber</a> wrote, but it wasn&#8217;t until a couple of months ago that I finally sat down to polish it up.  The first use-case we wanted to tackled was XML-RPC, so I got to work with <a href="http://josephscott.org/">Joseph Scott</a>.  Having OAuth authentication with XML-RPC would allow for blog clients like MarsEdit or the WordPress iPhone app to communicate with your blog without having to share your WordPress password.</p>

<p><span id="more-508"></span></p>

<h2>Problem</h2>

<p>It wasn&#8217;t very long before we butted up against my biggest complaint about the WordPress authentication system &#8212; it is very &#8220;username/password&#8221; centric.  There are places in the authentication code where it bails out prematurely if the username or password are missing.  This isn&#8217;t a problem if your plugin simply wants to authenticate the user against a different password store like LDAP; in fact that works quite well.</p>

<p>The problem is that there are a number of authentication systems widely deployed in the wild (SAML, OpenID, OAuth, etc) that do not fit the standard model of username and password.  You can look at the OpenID plugin to see some of the more <em>interesting</em> things that need to be done in order to make it work on the various versions of WordPress.  However, when it came to hooking OAuth into the WordPress XML-RPC endpoint, there simply was no way to hack around it&#8230; we had to change some of the underlying assumptions.</p>

<p>It&#8217;s worth noting one additional requirement we had.  Because the <code>wp_authenticate()</code> function, which does most of the heavy lifting for WordPress authentication, resides in <code>pluggable.php</code> it is possible for a plugin to replace the function entirely and authenticate the user however they want.  The problem with this solution is that many authentication mechanisms don&#8217;t know if they should be invoked without examining the request.  If <code>wp_authenticate</code> is replaced, and then the plugin determines it shouldn&#8217;t intervene, then it&#8217;s already too late.  There is no way to pass the function call back to the standard version of <code>wp_authenticate()</code>.  This is actually the case for all functions in <code>pluggable.php</code>.  One possible solution is to create wrapper functions for everything, which I initially <a href="https://core.trac.wordpress.org/ticket/8833">advocated</a>.  Instead, <a href="http://peter.westwood.name/">Peter Westwood</a> came up with a better solution using a well-established model, which we ended up using for the new authentication system.</p>

<h2>Solution</h2>

<p>It took far more planning than actual coding, but we finally developed a solution that breaks the dependence on a username and password, but maintains backward compatibility with existing plugins that hook into the authentication code. WordPress 2.8 includes a new filter called <em>authenticate</em> which is passed three parameters: a mixed value (either a <code>WP_User</code> object, a <code>WP_Error</code> object, or <code>null</code>), along with the username and password (either or both of which may be <code>null</code>).  All of the standard WordPress authentication logic has been moved into two functions that implement this filter, both with relatively low priority.</p>

<ul>
<li><p><code>wp_authenticate_username_password()</code> (priority 20) includes the standard logic for authenticating using a standard username and password.  It still calls the <code>wp_authenticate_user</code> filter, so plugins that rely on that should be fine.  This function also performs the check for an empty username or password.</p></li>
<li><p><code>wp_authenticate_cookie()</code> (priority 30) is only added into the filter chain when the user is authenticating via <code>wp-login.php</code> and does the normal checking for the WordPress authentication cookie.</p></li>
</ul>

<p>Both of these functions first check to see if the first parameter passed in is a valid <code>WP_User</code> object, and immediately stop if it is.  This allows plugins to add their own functions into the filter chain which populate the <code>WP_User</code> object using whatever means they see fit.  WordPress still takes care of setting the authentication cookie when appropriate, so plugins need only worry with authenticating the user and returning a valid <code>WP_User</code> object.</p>

<p>So what will this look like for plugins?  Well, the OAuth plugin for WordPress isn&#8217;t finished yet, but the function below should be pretty close to the final version.  While there is of course a lot more code for actually implementing OAuth, this is the only hook  into the WordPress authentication system needed to make it work.  Note that this function doesn&#8217;t care about the username and password parameters that are available from the <code>authenticate</code> hook&#8230; other plugins may use them.</p>

<pre><code>add_filter('authenticate', 'oauth_authenticate');

/**
 * If the current request was signed using a valid OAuth access token, verify 
 * the request and return the associated user.
 *
 * @param WP_User|WP_Error|null $user authenticated user
 * @return WP_User|WP_Error|null OAuth authenticated user, if request was signed
 */
function oauth_authenticate($user) {
    if (Auth_OAuth_Signer::requestIsSigned()) {
        $oauth_server = oauth_server();
        $user_id = $oauth_server-&gt;verify();
        if ($user_id !== false) {
            $user = new WP_User($user_id);
        }
    }   

    return $user;
}
</code></pre>

<h2>For Plugin Authors</h2>

<p>If you&#8217;re currently hooking into the WordPress authentication system, <strong>especially</strong> if you&#8217;re providing a custom implementation of <code>wp_authenticate()</code>, take a look at the new <code>authenticate</code> hook.  If you are relying on the <code>wp_authenticate</code> action hook, you should also look closely to see if the new hook will do what you need.  We left the <code>wp_authenticate</code> hook in place for now, but I&#8217;m pretty sure it&#8217;s no longer necessary and will likely be removed in future releases.  If you are using the <code>wp_authenticate_user</code> hook exclusively, then you&#8217;re probably fine, but it&#8217;s probably still a good idea to take a look at the new stuff.</p>

<h2>So, OAuth in WordPress?</h2>

<p>We made additional changes to the WordPress XML-RPC code to make it use the new authentication system appropriately, so it is now possible to hook OAuth into WordPress without any core modifications.  We do in fact have a basic <a href="http://diso.googlecode.com/svn/wordpress/oauth/trunk/">OAuth plugin</a> that works with the trunk version of WordPress.  However, I don&#8217;t think I&#8217;m going to push to have the OAuth code included in WordPress 2.8 for two reasons:</p>

<ul>
<li><p>the OAuth libraries are in flux right now.  There have been two main PHP libraries that people have used for OAuth, both with their own strengths and weaknesses.  I&#8217;m currently working with the <a href="http://groups.google.com/group/oauth-php">oauth-php community</a> to combine these libraries  using the best parts from each, and a new clean architecture.  This effort can be found <a href="http://github.com/willnorris/oauth-php/">on github</a>.  (This library also requires PHP5 which is a deal breaker for WordPress&#8230; not sure how we&#8217;ll manage that.)</p></li>
<li><p>Because OAuth has the potential to be such an important part of how third party clients interact with a WordPress blog, I want to make sure we get this right.  Personally, I&#8217;d feel much more comfortable getting some real world experience with this code in a slightly more constrained environment by releasing it as a plugin first.  Once we&#8217;ve done that and are comfortable with how it integrates into WordPress (plugin API, admin interface, database schema, etc), I&#8217;m all for making it a core part of WordPress.</p></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://willnorris.com/2009/03/authentication-in-wordpress-28/feed</wfw:commentRss>
		<slash:comments>68</slash:comments>
		</item>
		<item>
		<title>DiSo - One Year Later</title>
		<link>http://willnorris.com/2008/12/diso-one-year-later</link>
		<comments>http://willnorris.com/2008/12/diso-one-year-later#comments</comments>
		<pubDate>Thu, 18 Dec 2008 20:35:13 +0000</pubDate>
		<dc:creator>Will Norris</dc:creator>
				<category><![CDATA[identity]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[diso]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[openid]]></category>
		<category><![CDATA[openstack]]></category>
		<category><![CDATA[poco]]></category>
		<category><![CDATA[xrds-simple]]></category>

		<guid isPermaLink="false">http://willnorris.com/?p=444</guid>
		<description><![CDATA[I&#8217;m not sure that anyone mentioned it really, but a couple of weeks ago was the one year anniversary of the DiSo Project. In that time, Chris and I were both hired by Vidoop to work on DiSo full-time, and Steve was picked up by Six Apart. We&#8217;ve also seen the entire discussion about these [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure that anyone mentioned it really, but a couple of weeks ago was the <a href="http://factoryjoe.com/blog/2007/12/06/oauth-10-openid-20-and-up-next-diso/">one</a> <a href="http://redmonk.net/archives/2007/12/05/diso">year</a> <a href="http://willnorris.com/2007/12/wp-openid-moving-to-diso">anniversary</a> of the <a href="http://diso-project.org/">DiSo Project</a>.  In that time, Chris and I were both hired by <a href="http://vidoop.com/">Vidoop</a> to work on DiSo full-time, and Steve was picked up by <a href="http://sixapart.com/">Six Apart</a>.  We&#8217;ve also seen the entire discussion about these technologies, now dubbed the &#8220;Open Stack&#8221;, move forward tremendously.  Because of that, I&#8217;ve changed how I explain the DiSo Project to people.</p>

<p>Early in the project, it didn&#8217;t seem like too many people were talking openly about the state of social networking.  We all commonly referred to Facebook and MySpace as &#8220;silos&#8221; and &#8220;walled gardens&#8221;, but few people were talking about what the alternative would actually look like.  Now, I&#8217;m sure there were far more people working on this than I realized&#8230; I have no doubt about that.  But for me, it seemed like we were somewhat alone out there trying to figure out what protocols and technologies we could piece together to build a truly distributed social network.  Because of this, I often described DiSo almost as a think-tank for developing the model and the technologies.  We were writing code as well because we had to have a reference implementation that proved what we were talking about was possible, but I always de-emphasized that.  Code comes and goes, dozens of implementations of these protocols will be written in different languages for different platforms, and that&#8217;s fine.  What&#8217;s more important then, is the protocol itself.  That&#8217;s what DiSo was all about&#8230; gathering (and creating when necessary) the collection of protocols necessary to make this stuff work.  At least that&#8217;s how I viewed it, and explained it.</p>

<p>Today, the Open Stack is becoming very real.  We have agreed upon standards for <a href="http://xrds-simple.net/">service and metadata discovery</a>, <a href="http://openid.net/">authentication</a>, <a href="http://oauth.net/">API access</a>, and <a href="http://portablecontacts.net/">contact information</a>.  We have commitments and production deployments from key players in this space including Google, Yahoo!, MySpace, AOL, Microsoft, and many others.  What seemed like a small effort between a few individuals is now a full-scale shift of how we think about social interaction online.  Just to be clear, I&#8217;m not trying to take credit for any of this stuff happening.  The DiSo Project has played a small role in helping to shape and direct a few of the individual discussions, but this truly is a concerted effort between a lot of people who see the real potential for what we&#8217;re trying to do.</p>

<p>So where does this all leave DiSo today?  Well, it&#8217;s obvious now that DiSo is not the think-tank for these technologies&#8230; they&#8217;re being developed all over the web, inside and between dozens of companies.  Instead, I now put more emphasis on the code that we&#8217;re writing, because I think we represent a key principal of this entire Open Stack model.</p>

<p>The easiest example to give a layman for distributed social networking is &#8220;being able to interact with your Facebook friends using your MySpace account.&#8221;  In the future, most people will likely have accounts with one or two of the large social networks or identity providers, and participate in the open web from there.  With these large networks and providers at the table now, we can ensure that we develop a solution that will give users choice and the freedom to participate from anywhere.  If this is truly going to be &#8220;user-centric&#8221;, then in fact, a user shouldn&#8217;t even have to join one of these large social networks in order to participate.  Just like you can setup a server to host your own email instead of using a provider like GMail, you should be able to run your own server which provides the various pieces of the Open Stack.  And that&#8217;s precisely where DiSo fits in &#8212; we&#8217;re working to provide the software that lets you participate in the open web from the comfort of your own domain.  While there may be advantages to using one of the large providers, in order for this system to be truly open, then users must always have the option of maintaining complete control and running everything themselves.  As soon as DiSo users become second-class citizens because they are not in one of the major social networks, then we&#8217;ve failed to achieve the level of openness we sought.</p>

<p>Today, all of my development for DiSo is being done in PHP, and most of it specifically for <a href="http://wordpress.org/">WordPress</a>.  Between myself, Steve Ivy, and <a href="http://singpolyma.net/">Stephen Weber</a>, we have basic WordPress plugins for OpenID, OAuth, XRDS-Simple, rich profiles (hCard), Activity Streams, contacts, and permissions.  Many of them have work yet to be done before they are really stable and ready for mass consumption, but many can be seen right here on <a href="http://willnorris.com/">willnorris.com</a>.  Six Apart is also developing implementations on top of <a href="http://www.movabletype.org/">Movable Type</a>, including the recently announced <a href="http://www.movabletype.com/motion/">Motion</a>, which provides some real cool functionality around activity streams.</p>
]]></content:encoded>
			<wfw:commentRss>http://willnorris.com/2008/12/diso-one-year-later/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

