<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -87,7 +87,7 @@ class OAuthTokenAPI extends OAuthBaseAPI {
     //}	
     
     public function get_authorization_url($callbak_url, $request_token) {
-        $resource = '/authorize.aspx';
+        $resource = '/authorize';
         $this-&gt;resource_uri = $resource;
         $querystring = '?' . OAuthConstants::$OAUTH_TOKEN . '=' . urlencode($request_token) . '&amp;' . OAuthConstants::$QS_OAUTH_CALLBACK . '=' . urlencode($callbak_url);
         $resource_request = $this-&gt;resource_base . $this-&gt;resource_uri . $querystring;</diff>
      <filename>lib/api/OAuthTokenAPI.php</filename>
    </modified>
    <modified>
      <diff>@@ -20,49 +20,49 @@ class PeopleAPI extends OAuthBaseAPI {
     
     //NOT SUPPORTED YET
     public function get_people_all($user_id) {
-        $resource = sprintf(&quot;/people/%s/%s&quot;, $user_id, SelectorType::$ALL);
+        $resource = sprintf(&quot;/v2/people/%s/%s&quot;, $user_id, SelectorType::$ALL);
         $result = $this-&gt;do_get($resource, null);
         return $result;
     }
     
     //OK //fields + startIndex + count
     public function get_people_friends($user_id, $query_parameters = null) {
-        $resource = sprintf(&quot;/people/%s/%s&quot;, $user_id, SelectorType::$FRIENDS);
+        $resource = sprintf(&quot;/v2/people/%s/%s&quot;, $user_id, SelectorType::$FRIENDS);
         $result = $this-&gt;do_get($resource, null, $query_parameters);
         return $result;
     }
 
     //OK
     public function get_people_friends_current($query_parameters = null) {
-        $resource = sprintf(&quot;/people/%s/%s&quot;, SelectorType::$ME, SelectorType::$FRIENDS);
+        $resource = sprintf(&quot;/v2/people/%s/%s&quot;, SelectorType::$ME, SelectorType::$FRIENDS);
         $result = $this-&gt;do_get($resource, null, $query_parameters);
         return $result;
     }
     
     //NOT SUPPORTED YET
     public function get_people_by_group($user_id, $group_id) {
-        $resource = sprintf(&quot;/people/%s/%s&quot;, $user_id, $group_id);
+        $resource = sprintf(&quot;/v2/people/%s/%s&quot;, $user_id, $group_id);
         $result = $this-&gt;do_get($resource, null);
         return $result;
     }
 
     //NOT SUPPORTED YET
     public function get_people_by_pid($user_id, $pid) {
-        $resource = sprintf(&quot;/people/%s/%s/%s&quot;, $user_id, SelectorType::$ALL, $pid);
+        $resource = sprintf(&quot;/v2/people/%s/%s/%s&quot;, $user_id, SelectorType::$ALL, $pid);
         $result = $this-&gt;do_get($resource, null);
         return $result;
     }
     
     //OK //fields + startIndex + count
     public function get_people_profile($user_id, $query_parameters = null) {
-        $resource = sprintf(&quot;/people/%s/%s&quot;, $user_id, SelectorType::$SELF);
+        $resource = sprintf(&quot;/v2/people/%s/%s&quot;, $user_id, SelectorType::$SELF);
         $result = $this-&gt;do_get($resource, null, $query_parameters);
         return $result;
     }
     
     //OK
     public function get_people_profile_current($query_parameters = null) {
-        $resource = sprintf(&quot;/people/%s/%s&quot;, SelectorType::$ME, SelectorType::$SELF);
+        $resource = sprintf(&quot;/v2/people/%s/%s&quot;, SelectorType::$ME, SelectorType::$SELF);
         $result = $this-&gt;do_get($resource, null, $query_parameters);
         return $result;
     }</diff>
      <filename>lib/api/PeopleAPI.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e1ffaf48f390a62d9ce6f36c4a67a9b493f0840b</id>
    </parent>
  </parents>
  <author>
    <name>Henry Work</name>
    <email>hwork@henry-works-macbook-pro.local</email>
  </author>
  <url>http://github.com/techcrunch/myspace_oauth/commit/af9adea8ec34e49c14665191b9addc9b0b6e143b</url>
  <id>af9adea8ec34e49c14665191b9addc9b0b6e143b</id>
  <committed-date>2008-07-23T21:40:20-07:00</committed-date>
  <authored-date>2008-07-23T21:40:20-07:00</authored-date>
  <message>* /authorize.aspx  -&gt; /authorize
* using API versioning</message>
  <tree>df28affdf2419e86014f9b1d4843906f77d57f3f</tree>
  <committer>
    <name>Henry Work</name>
    <email>hwork@henry-works-macbook-pro.local</email>
  </committer>
</commit>
