My favorites | Sign in
Logo
                
Details: Show all Hide all

Today

  • 95 min ago
    Samples (Where to find client library samples) Wiki page commented on by ua.oleg   -   123
    123
  • 6 hours ago
    issue 71 (unable to get more than 89 friends when I have over 6,000 - ...) reported by supp...@mymobroom.com   -   What steps will reproduce the problem? 1. use the friends page url string 2. set to view all friends 3. What is the expected output? What do you see instead? supposed to display detials for all my 6,000 friends but gets stuck on only 89. [startIndex] => 1 [totalResults] => 5569 [itemsPerPage] => 89 [filtered] => [sorted] => [updatedSince] => What version of the product are you using? On what operating system? opensocial-php-client-1.1.1 on windows XP pro. Please provide any additional information below. I am not sure if "startIndex" is working as it only works if set to "1", I get error 400 if I set it to anything else. Also, "count" does not seem right either. If I set to "10" I get 7 friends back , and if I set to "100" I get 89 friends back. Setting to "1000" I get 89 again, setting to "50" I get 43 friends back. I also do not think the "fields" option actually does anything. in the test scripts those options are not the fields which are returned.. for example.. $profile_fields = array( 'aboutMe', 'displayName', 'bodyType', 'currentLocation', 'drinker', 'happiestWhen', 'lookingFor' ); $friends_request_params = array( 'userId' => '@me', // Person whose friends we are fetching. 'groupId' => '@friends', // @friends for the Friends group. 'fields' => $profile_fields, // Which profile fields to request. 'count' => '50', // Max friends to fetch. 'startIndex' => '1' ); $batch->add($osapi->people->get($friends_r equest_params), 'friends'); actually returns.. [displayName] => NASCAR Fever [hasApp] => false [id] => myspace.com.person.4732445 [name] => NASCAR Fever [profileUrl] => http://www.myspace.com/scoobyluver17 [thumbnailUrl] => http://c1.ac-images.myspacecdn.com/images02/48/s_a 39e7c94666a41ba9d66360bf51363a4.jpg [isOwner] => [isViewer] => I tried setting fields to just "id" but it does not change anything. In fact leaving it out or altering it in any way does nothing. I can only find this page for instructions. http://code.google.com/p/opensocial-php-client/wik i/HowToPeople#Fetching This shows data returned different again, but does not really explain the call which was made to generate that data. Am I doing something wrong somewhere or have these functions not fully been implimented yet?
    What steps will reproduce the problem? 1. use the friends page url string 2. set to view all friends 3. What is the expected output? What do you see instead? supposed to display detials for all my 6,000 friends but gets stuck on only 89. [startIndex] => 1 [totalResults] => 5569 [itemsPerPage] => 89 [filtered] => [sorted] => [updatedSince] => What version of the product are you using? On what operating system? opensocial-php-client-1.1.1 on windows XP pro. Please provide any additional information below. I am not sure if "startIndex" is working as it only works if set to "1", I get error 400 if I set it to anything else. Also, "count" does not seem right either. If I set to "10" I get 7 friends back , and if I set to "100" I get 89 friends back. Setting to "1000" I get 89 again, setting to "50" I get 43 friends back. I also do not think the "fields" option actually does anything. in the test scripts those options are not the fields which are returned.. for example.. $profile_fields = array( 'aboutMe', 'displayName', 'bodyType', 'currentLocation', 'drinker', 'happiestWhen', 'lookingFor' ); $friends_request_params = array( 'userId' => '@me', // Person whose friends we are fetching. 'groupId' => '@friends', // @friends for the Friends group. 'fields' => $profile_fields, // Which profile fields to request. 'count' => '50', // Max friends to fetch. 'startIndex' => '1' ); $batch->add($osapi->people->get($friends_r equest_params), 'friends'); actually returns.. [displayName] => NASCAR Fever [hasApp] => false [id] => myspace.com.person.4732445 [name] => NASCAR Fever [profileUrl] => http://www.myspace.com/scoobyluver17 [thumbnailUrl] => http://c1.ac-images.myspacecdn.com/images02/48/s_a 39e7c94666a41ba9d66360bf51363a4.jpg [isOwner] => [isViewer] => I tried setting fields to just "id" but it does not change anything. In fact leaving it out or altering it in any way does nothing. I can only find this page for instructions. http://code.google.com/p/opensocial-php-client/wik i/HowToPeople#Fetching This shows data returned different again, but does not really explain the call which was made to generate that data. Am I doing something wrong somewhere or have these functions not fully been implimented yet?

Older

  • Dec 09, 2009
    issue 68 (Netlog provider does not (fully) support RPC) commented on by maescool   -   Fix seems to work. Thanks!
    Fix seems to work. Thanks!
  • Dec 09, 2009
    issue 68 (Netlog provider does not (fully) support RPC) commented on by joc...@netlog.com   -   A fix is to add this to osapiNetlogProvider: public function preRequestProcess(&$request, &$method, &$url, &$headers, osapiAuth &$signer) { if (method_exists($signer, 'setUseBodyHash')) { $signer->setUseBodyHash(true); } }
    A fix is to add this to osapiNetlogProvider: public function preRequestProcess(&$request, &$method, &$url, &$headers, osapiAuth &$signer) { if (method_exists($signer, 'setUseBodyHash')) { $signer->setUseBodyHash(true); } }
  • Dec 08, 2009
    Samples (Where to find client library samples) Wiki page commented on by kristine.t.p   -   ola
    ola
  • Dec 03, 2009
    issue 70 (statusmoodcomments in myspace) reported by maescool   -   I'm missing statusmoodcomments for myspace New feature i guess?
    I'm missing statusmoodcomments for myspace New feature i guess?
  • Dec 02, 2009
    issue 69 (What when you use the OAuth for userlogin on your site?) reported by maescool   -   When i use the OAuth as userlogin system. I use the sessionid to start, when the user is logged in, i update the storage cache to the new localuserid (in stead of the sessionid), this because sessionid's can reset unexpected. i have manually added this.. but i guess i could be a feature.. like updateLocalUserId and it updates automatically the cache? example in my osapi extended class: function updateStorage($localUserId){ $newstorageKey = 'OAuth:' . NETLOG_CONSUMER_KEY . ':' . null . ':' . $localUserId; if ($this->storageKey != $newstorageKey){ if (($token = $this->storage->get($this->storageKey)) !== false) { $this->storage->set($newstorageKey, $token); } } } i keep the old cache so i wouldn't have to reset all my vars. and it will work next pagecall with the new cache.
    When i use the OAuth as userlogin system. I use the sessionid to start, when the user is logged in, i update the storage cache to the new localuserid (in stead of the sessionid), this because sessionid's can reset unexpected. i have manually added this.. but i guess i could be a feature.. like updateLocalUserId and it updates automatically the cache? example in my osapi extended class: function updateStorage($localUserId){ $newstorageKey = 'OAuth:' . NETLOG_CONSUMER_KEY . ':' . null . ':' . $localUserId; if ($this->storageKey != $newstorageKey){ if (($token = $this->storage->get($this->storageKey)) !== false) { $this->storage->set($newstorageKey, $token); } } } i keep the old cache so i wouldn't have to reset all my vars. and it will work next pagecall with the new cache.
  • Dec 02, 2009
    issue 68 (Netlog provider does not (fully) support RPC) reported by maescool   -   You can authenticate with netlog OAuth, but when you want to do a batch execute like get persons info. I get not authenticated error. trunk or release 1.1.1 Fix: remove the rpc url to ""
    You can authenticate with netlog OAuth, but when you want to do a batch execute like get persons info. I get not authenticated error. trunk or release 1.1.1 Fix: remove the rpc url to ""
  • Dec 02, 2009
    issue 67 (Memcache storage always removes token when you do a storage ...) reported by maescool   -   1. Have an openauth connection started. 2. Next time you run the script with an api call and need the access token last trunk version when you get with default false expire, it always returns false? i guess that's not right.. it only should do that when a time is given. copy of code that does the wrong thing: public function get($key, $expiration = false) { $this->check(); if (($ret = @memcache_get($this->connection, $key)) === false) { return false; } if (! $expiration || (time() - $ret['time'] > $expiration)) { $this->delete($key); return false; } return $ret['data']; } posible fix: public function get($key, $expiration = false) { $this->check(); if (($ret = @memcache_get($this->connection, $key)) === false) { return false; } if ($expiration) if (time() - $ret['time'] > $expiration) { $this->delete($key); return false; } return $ret['data']; }
    1. Have an openauth connection started. 2. Next time you run the script with an api call and need the access token last trunk version when you get with default false expire, it always returns false? i guess that's not right.. it only should do that when a time is given. copy of code that does the wrong thing: public function get($key, $expiration = false) { $this->check(); if (($ret = @memcache_get($this->connection, $key)) === false) { return false; } if (! $expiration || (time() - $ret['time'] > $expiration)) { $this->delete($key); return false; } return $ret['data']; } posible fix: public function get($key, $expiration = false) { $this->check(); if (($ret = @memcache_get($this->connection, $key)) === false) { return false; } if ($expiration) if (time() - $ret['time'] > $expiration) { $this->delete($key); return false; } return $ret['data']; }
  • Nov 27, 2009
    issue 66 (Add LinkedIn Support) reported by timrnicholson   -   I would like to see LinkedIn added as a standard provider. It will need to invoke the new OAuth v1.0a process that is already included in the osapi libraries v1.1.1.
    I would like to see LinkedIn added as a standard provider. It will need to invoke the new OAuth v1.0a process that is already included in the osapi libraries v1.1.1.
  • Nov 27, 2009
    HowToConnecting (Connecting to OpenSocial containers) Wiki page commented on by timrnicholson   -   Can you please update the documentation to provide information on how to use the new OAuth v1.0a? I can see that there is a new OAuth class osapiOAuth3Legged_10a in the API's, but I'm not sure how to trigger using those over the prior version above (osapiOAuth3Legged). I am trying to configure a provider manually (LinkedIn) and they only support the 1.0a process.
    Can you please update the documentation to provide information on how to use the new OAuth v1.0a? I can see that there is a new OAuth class osapiOAuth3Legged_10a in the API's, but I'm not sure how to trigger using those over the prior version above (osapiOAuth3Legged). I am trying to configure a provider manually (LinkedIn) and they only support the 1.0a process.
  • Nov 16, 2009
    issue 65 (osapiMediaItem incorrectly returns invalid mimetype) reported by lotu...@mail.be   -   What steps will reproduce the problem? 1. osapiMediaItem returns an error when using a correct mimetype 2. The mimetype is image/jpeg 3. osapiMediaItem throws an exception of invalid media type (only image is allowed) What is the expected output? What do you see instead? No exception as image/jpeg is a valid mimetype What version of the product are you using? On what operating system? 1.1.1 Please provide any additional information below.
    What steps will reproduce the problem? 1. osapiMediaItem returns an error when using a correct mimetype 2. The mimetype is image/jpeg 3. osapiMediaItem throws an exception of invalid media type (only image is allowed) What is the expected output? What do you see instead? No exception as image/jpeg is a valid mimetype What version of the product are you using? On what operating system? 1.1.1 Please provide any additional information below.
  • Nov 13, 2009
    issue 64 (Fatal error iin osapi/io/osapiRestIO.php on line 82) commented on by smartj   -   this is because $entrydata is a string not an array (see http://bugs.php.net/bug.php?id=31303 for reference). For now I have wrapped the unset call in an is_array if condition to prevent fatal errors.
    this is because $entrydata is a string not an array (see http://bugs.php.net/bug.php?id=31303 for reference). For now I have wrapped the unset call in an is_array if condition to prevent fatal errors.
  • Nov 13, 2009
    issue 64 (Fatal error iin osapi/io/osapiRestIO.php on line 82) reported by smartj   -   What steps will reproduce the problem? Not sure. What is the expected output? What do you see instead? The sendBatch() method causes fatal error in php5. Errors in Apache logs: PHP Fatal error: Cannot unset string offsets in osapi/io/osapiRestIO.php on line 82 Line 82 is: "unset($entry['data']['entry']);" What version of the product are you using? On what operating system? v1.1.1 on PHP 5.2.4-2ubuntu5.7 Please provide any additional information below. I have attached a patch.
    What steps will reproduce the problem? Not sure. What is the expected output? What do you see instead? The sendBatch() method causes fatal error in php5. Errors in Apache logs: PHP Fatal error: Cannot unset string offsets in osapi/io/osapiRestIO.php on line 82 Line 82 is: "unset($entry['data']['entry']);" What version of the product are you using? On what operating system? v1.1.1 on PHP 5.2.4-2ubuntu5.7 Please provide any additional information below. I have attached a patch.
  • Nov 11, 2009
    issue 63 (Orkut media items does not work.) commented on by Shalom.Shwaitzer   -   I've found the problem. Orkut methods are all lowercase and the method mediaItems.get (on osapi) should be mediaitems.get, but since there are other providers (like myspace) that accept the mediaitem as it is right now (mediaItems.get), the best way to handle this, is to fix the method name locally in the osapiOrkutProvider.php file
    I've found the problem. Orkut methods are all lowercase and the method mediaItems.get (on osapi) should be mediaitems.get, but since there are other providers (like myspace) that accept the mediaitem as it is right now (mediaItems.get), the best way to handle this, is to fix the method name locally in the osapiOrkutProvider.php file
  • Nov 11, 2009
    issue 63 (Orkut media items does not work.) reported by Shalom.Shwaitzer   -   What steps will reproduce the problem? 1.after a successful request to albums list. - getting the album id. - calling to a mediaItems->get method like so: $aid = 'THE ID OF AN ALBUM I'VE GOT IN THE PREVIOUS REQUEST'; $user_params = array( 'userId' => "@me", 'groupId' => '@self', 'albumId' => $aid ); $batch->add($this->osapi->mediaItems->get($user_params),'get_mediaItems'); $result = $batch->execute(); What is the expected output? What do you see instead? expected: Array of photos. got: Error 501 notImplemented: The method mediaItems.get is not implemented What version of the product are you using? On what operating system? The latest. Please provide any additional information below. This method works fine for Myspace.
    What steps will reproduce the problem? 1.after a successful request to albums list. - getting the album id. - calling to a mediaItems->get method like so: $aid = 'THE ID OF AN ALBUM I'VE GOT IN THE PREVIOUS REQUEST'; $user_params = array( 'userId' => "@me", 'groupId' => '@self', 'albumId' => $aid ); $batch->add($this->osapi->mediaItems->get($user_params),'get_mediaItems'); $result = $batch->execute(); What is the expected output? What do you see instead? expected: Array of photos. got: Error 501 notImplemented: The method mediaItems.get is not implemented What version of the product are you using? On what operating system? The latest. Please provide any additional information below. This method works fine for Myspace.
  • Nov 05, 2009
    issue 62 (Myspace notifications button0_params argument must be double...) commented on by smartj   -   Oops, I made a couple mistakes above. 1) The patch has a bug in it. Attached is the fixed patch. 2) It will sometimes create the notificaiton, but the appParams bag (the url parameters it uses in the link to the canvas) is maleformed. URLEncoding fixes this.
    Oops, I made a couple mistakes above. 1) The patch has a bug in it. Attached is the fixed patch. 2) It will sometimes create the notificaiton, but the appParams bag (the url parameters it uses in the link to the canvas) is maleformed. URLEncoding fixes this.
  • Nov 05, 2009
    issue 62 (Myspace notifications button0_params argument must be double...) reported by smartj   -   What steps will reproduce the problem? 1. Create a notification for myspace with json_encoded button0_params 2. Try sending the notfication What is the expected output? What do you see instead? They respond with a 201, which means it was created. However, it was not created. It was rejected because the button0_params teplateParameter needs to be double urlencoded. What version of the product are you using? On what operating system? v1.1.1 Please provide any additional information below. If you construct the templateParams like: $notification->setTemplateParameter('content', 'blah blah'); $notification->setField('recipientIds', array($userId)); $notification->setField('templateParams' => array( 'button0_surface' => 'canvas', 'button0_label' => 'Check it out', 'button0_params' => json_encode(array( 'param1' => 'val1', 'param2' => 'val2' )) ) Their service will return 201, which means it should have sent. However, you have to url encode the 'button0_params' value in order to get it to actually send. See patch for proposed fix.
    What steps will reproduce the problem? 1. Create a notification for myspace with json_encoded button0_params 2. Try sending the notfication What is the expected output? What do you see instead? They respond with a 201, which means it was created. However, it was not created. It was rejected because the button0_params teplateParameter needs to be double urlencoded. What version of the product are you using? On what operating system? v1.1.1 Please provide any additional information below. If you construct the templateParams like: $notification->setTemplateParameter('content', 'blah blah'); $notification->setField('recipientIds', array($userId)); $notification->setField('templateParams' => array( 'button0_surface' => 'canvas', 'button0_label' => 'Check it out', 'button0_params' => json_encode(array( 'param1' => 'val1', 'param2' => 'val2' )) ) Their service will return 201, which means it should have sent. However, you have to url encode the 'button0_params' value in order to get it to actually send. See patch for proposed fix.
  • Nov 03, 2009
    r211 (Tagging the 1.1.1 release ) committed by api.kurrik.g00g1e   -   Tagging the 1.1.1 release
    Tagging the 1.1.1 release
  • Nov 03, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by api.kurrik.g00g1e   -   Revision r210 Edited wiki page through web user interface.
    Revision r210 Edited wiki page through web user interface.
  • Nov 03, 2009
    opensocial-php-client-1.1.1.tar.bz (OpenSocial PHP Client 1.1.1 (tar.bz)) file uploaded by api.kurrik.g00g1e   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Nov 03, 2009
    opensocial-php-client-1.1.1.tar.gz (OpenSocial PHP Client 1.1.1 (tar.gz)) file uploaded by api.kurrik.g00g1e   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Nov 03, 2009
    opensocial-php-client-1.1.1.zip (OpenSocial PHP Client 1.1.1 (zip)) file uploaded by api.kurrik.g00g1e   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Nov 03, 2009
    r209 (Updating version for new release.) committed by api.kurrik.g00g1e   -   Updating version for new release.
    Updating version for new release.
  • Nov 02, 2009
    issue 61 (Signing urls using osapiSecurityToken on hi5 fails to genera...) reported by smartj   -   What steps will reproduce the problem? 1. Try to sign a url using osapiSecurityToken and a hi5 token with special characters like space 2. Get a url 3. Check url against RFC-1738. What is the expected output? What do you see instead? Url should be valid What version of the product are you using? On what operating system? v1.1.0 Please provide any additional information below. Need to urlencode the security token before creating the url. I have attached a patch.
    What steps will reproduce the problem? 1. Try to sign a url using osapiSecurityToken and a hi5 token with special characters like space 2. Get a url 3. Check url against RFC-1738. What is the expected output? What do you see instead? Url should be valid What version of the product are you using? On what operating system? v1.1.0 Please provide any additional information below. Need to urlencode the security token before creating the url. I have attached a patch.
  • Nov 02, 2009
    issue 60 (OAuthRequest: empty $http_url in OAuth.php gives notice) reported by smartj   -   What steps will reproduce the problem? 1. Create an instance of OAuthRequest with blank url 2. Try to get url via get_normalized_http_url() 3. Fail on parse_url($this->http_url); What is the expected output? What do you see instead? A check for empty($this->http_url) What version of the product are you using? On what operating system? v1.1.0 on OSX Please provide any additional information below. I have a patch.
    What steps will reproduce the problem? 1. Create an instance of OAuthRequest with blank url 2. Try to get url via get_normalized_http_url() 3. Fail on parse_url($this->http_url); What is the expected output? What do you see instead? A check for empty($this->http_url) What version of the product are you using? On what operating system? v1.1.0 on OSX Please provide any additional information below. I have a patch.
  • Oct 29, 2009
    r208 (Fixed issue with template parameters in myspace provider. Up...) committed by jle.edwards   -   Fixed issue with template parameters in myspace provider. Updated activities example to make it more clear what needs to be done for myspace vs others. Added default values to osapiActivity Constructor.
    Fixed issue with template parameters in myspace provider. Updated activities example to make it more clear what needs to be done for myspace vs others. Added default values to osapiActivity Constructor.
  • Oct 28, 2009
    r207 (Updated some myspace specific endpoints. Added a new endpoin...) committed by jle.edwards   -   Updated some myspace specific endpoints. Added a new endpoint which allows users to get comments from their profile.
    Updated some myspace specific endpoints. Added a new endpoint which allows users to get comments from their profile.
  • Oct 27, 2009
    issue 52 (Add Support for 0.9 Albums, MediaItems, Content Upload, Grou...) changed by jle.edwards   -   This issue has been completed.
    Status: Fixed
    Owner: jle.edwards
    This issue has been completed.
    Status: Fixed
    Owner: jle.edwards
  • Oct 23, 2009
    issue 59 (osapiCurlProvider not properly implemented) reported by amargos   -   Headers are not returned with response. There is mistake in file src\osapi\io\osapiCurlProvider.php line 84. - $response = array('http_code' => $http_code, 'data' => $response_body, 'headers' => $headers); should be + $response = array('http_code' => $http_code, 'data' => $response_body, 'headers' => $response_header_array);
    Headers are not returned with response. There is mistake in file src\osapi\io\osapiCurlProvider.php line 84. - $response = array('http_code' => $http_code, 'data' => $response_body, 'headers' => $headers); should be + $response = array('http_code' => $http_code, 'data' => $response_body, 'headers' => $response_header_array);
  • Oct 17, 2009
    issue 58 (any call to myspace fails) commented on by icepickrg   -   upgraded php to 5.2 all works
    upgraded php to 5.2 all works
  • Oct 16, 2009
    Samples (Where to find client library samples) Wiki page commented on by lukas.hoffmann   -   jhjhjhjhj
    jhjhjhjhj
  • Oct 10, 2009
    issue 58 (any call to myspace fails) reported by icepickrg   -   What steps will reproduce the problem? 1. install and setup sample 2. change settings in init my apps. 3. call sample from inside myspace IFRAME. What is the expected output? What do you see instead? Any information that correponds to the userid What version of the product are you using? On what operating system? 1.1.0 Please provide any additional information below. PHP Notice: Object of class stdClass could not be converted to int in /var/www/html/mspaj/conf/osapi/io/osapiRestIO.php on line 191 PHP Fatal error: Cannot use object of type stdClass as array in /var/www/html/mspaj/conf/osapi/io/osapiRestIO.php on line 79
    What steps will reproduce the problem? 1. install and setup sample 2. change settings in init my apps. 3. call sample from inside myspace IFRAME. What is the expected output? What do you see instead? Any information that correponds to the userid What version of the product are you using? On what operating system? 1.1.0 Please provide any additional information below. PHP Notice: Object of class stdClass could not be converted to int in /var/www/html/mspaj/conf/osapi/io/osapiRestIO.php on line 191 PHP Fatal error: Cannot use object of type stdClass as array in /var/www/html/mspaj/conf/osapi/io/osapiRestIO.php on line 79
  • Oct 09, 2009
    r206 (Making a tag for the 1.1.0 release. ) committed by api.kurrik.g00g1e   -   Making a tag for the 1.1.0 release.
    Making a tag for the 1.1.0 release.
  • Oct 09, 2009
    TableOfContents (Documentation Table of Contents) Wiki page edited by api.kurrik.g00g1e   -   Revision r205 Edited wiki page through web user interface.
    Revision r205 Edited wiki page through web user interface.
  • Oct 09, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by api.kurrik.g00g1e   -   Revision r204 Edited wiki page through web user interface.
    Revision r204 Edited wiki page through web user interface.
  • Oct 09, 2009
    opensocial-php-client-1.1.0.tar.bz (OpenSocial PHP Client 1.1.0 (tar.bz)) file uploaded by api.kurrik.g00g1e   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Oct 09, 2009
    opensocial-php-client-1.1.0.tar.gz (OpenSocial PHP Client 1.1.0 (tar.gz)) file uploaded by api.kurrik.g00g1e   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Oct 09, 2009
    opensocial-php-client-1.1.0.zip (OpenSocial PHP Client 1.1.0 (zip)) file uploaded by api.kurrik.g00g1e   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Oct 09, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by api.kurrik.g00g1e   -   Revision r203 Edited wiki page through web user interface.
    Revision r203 Edited wiki page through web user interface.
  • Oct 09, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by api.kurrik.g00g1e   -   Revision r202 Edited wiki page through web user interface.
    Revision r202 Edited wiki page through web user interface.
  • Oct 09, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by api.kurrik.g00g1e   -   Revision r201 Edited wiki page through web user interface.
    Revision r201 Edited wiki page through web user interface.
  • Sep 29, 2009
    r200 (Fixed support for MySpace's new 0.9 endpoints (@me wasn't wo...) committed by api.kurrik.g00g1e   -   Fixed support for MySpace's new 0.9 endpoints (@me wasn't working with their new ID format). Added additional profile fields to check for in MySpace. Added a method to set the user ID on a 2-legged signer so that I could rewrite the xoauth_requestor_id in the MySpace provider.
    Fixed support for MySpace's new 0.9 endpoints (@me wasn't working with their new ID format). Added additional profile fields to check for in MySpace. Added a method to set the user ID on a 2-legged signer so that I could rewrite the xoauth_requestor_id in the MySpace provider.
  • Sep 29, 2009
    r199 (Added @videos example for MediaItems (myspace specific). Add...) committed by jle.edwards   -   Added @videos example for MediaItems (myspace specific). Added MySpaceID 3leggedOAuth test. Commented out create notification so one isn't created on every single load of the page.
    Added @videos example for MediaItems (myspace specific). Added MySpaceID 3leggedOAuth test. Commented out create notification so one isn't created on every single load of the page.
  • Sep 29, 2009
    HowToAppData (How to request and update AppData) Wiki page edited by api.kurrik.g00g1e   -   Revision r198 Edited wiki page through web user interface.
    Revision r198 Edited wiki page through web user interface.
  • Sep 28, 2009
    issue 57 (HI5 -Fatal error when try batching (401)) reported by pemaxim   -   I'm trying to authenticate user of HI5 and get users's parameters using batch: 1. params of HI5 Provider: "https://api.hi5.com/oauth/requestToken", "https://login.hi5.com/oauth/authorize", "https://api.hi5.com/oauth/accessToken", "http://api.hi5.com/social/rest/", "http://api.hi5.com/social/rpc", "Hi5", true, $httpProvider 2. connecting to a container: session_start(); $localUserId = session_id(); $storage = new osapiFileStorage('/tmp/osapi'); $provider = new osapiHi5Provider(); $auth = osapiOAuth3Legged::performOAuthLogin("<my_consumer key>", "<my_consumer secret>", $storage, $provider, $localUserId); $osapi = new osapi($provider, $auth); It performed well, then... 3. trying bathing $request = $osapi->people->get(array('userId'=>'@me', 'groupId'=>'@self')); $batch = $osapi->newBatch(); $batch->add($request, 'request_label'); $result = $batch->execute(); BUT, when trying to do $batch->execute() it returns: Fatal error: Uncaught exception 'osapiException' with message 'Error sending RPC request: HTTP Status 401 - OAuth Authentication Failuresignature_invalid message: OAuth Authentication Failuresignature_invalid What's wrong? Authentication is done well, but when try to batch execution - returns 401 error. When I do the same operation for authenticate user of MySpace and get users's parameters using batch, I haven't any problem with it. The version of library is 1.0.1
    I'm trying to authenticate user of HI5 and get users's parameters using batch: 1. params of HI5 Provider: "https://api.hi5.com/oauth/requestToken", "https://login.hi5.com/oauth/authorize", "https://api.hi5.com/oauth/accessToken", "http://api.hi5.com/social/rest/", "http://api.hi5.com/social/rpc", "Hi5", true, $httpProvider 2. connecting to a container: session_start(); $localUserId = session_id(); $storage = new osapiFileStorage('/tmp/osapi'); $provider = new osapiHi5Provider(); $auth = osapiOAuth3Legged::performOAuthLogin("<my_consumer key>", "<my_consumer secret>", $storage, $provider, $localUserId); $osapi = new osapi($provider, $auth); It performed well, then... 3. trying bathing $request = $osapi->people->get(array('userId'=>'@me', 'groupId'=>'@self')); $batch = $osapi->newBatch(); $batch->add($request, 'request_label'); $result = $batch->execute(); BUT, when trying to do $batch->execute() it returns: Fatal error: Uncaught exception 'osapiException' with message 'Error sending RPC request: HTTP Status 401 - OAuth Authentication Failuresignature_invalid message: OAuth Authentication Failuresignature_invalid What's wrong? Authentication is done well, but when try to batch execution - returns 401 error. When I do the same operation for authenticate user of MySpace and get users's parameters using batch, I haven't any problem with it. The version of library is 1.0.1
  • Sep 20, 2009
    issue 56 (Add the album, media item service support specified by v0.9 ...) commented on by dujinhui   -   The code review url is http://codereview.appspot.com/115087
  • Sep 20, 2009
    issue 56 (Add the album, media item service support specified by v0.9 ...) reported by dujinhui   -   The patch is created by Peng Li(lipengage@gmail.com).
    The patch is created by Peng Li(lipengage@gmail.com).
  • Sep 16, 2009
    r197 (Added a test to fetch @all profile fields. Added languagesS...) committed by api.kurrik.g00g1e   -   Added a test to fetch @all profile fields. Added languagesSpoken profile field to orkut tests.
    Added a test to fetch @all profile fields. Added languagesSpoken profile field to orkut tests.
  • Sep 16, 2009
    r196 (License headers were incorrect on all of the test suite file...) committed by api.kurrik.g00g1e   -   License headers were incorrect on all of the test suite files. This patch corrects them.
    License headers were incorrect on all of the test suite files. This patch corrects them.
 
Hosted by Google Code