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

Last 7 days

  • Dec 22, 2009
    issue 32 (Package install problem) commented on by bubenkoff   -   i can fix if you'll permit
    i can fix if you'll permit
  • Dec 22, 2009
    issue 32 (Package install problem) reported by bubenkoff   -   Hi, i have a problem using a package, it's distutils based, and looks like it has not correct setup.py cause there are no Crypto subpackages in build of package, you can reproduce: What steps will reproduce the problem? anatoly@anatoly-desktop:~/install/opensocial-python-client$ ~/python/gadoz-dev-2.5/bin/python setup.py build running build running build_py creating build creating build/lib creating build/lib/opensocial copying src/opensocial/errors.py -> build/lib/opensocial copying src/opensocial/validator.py -> build/lib/opensocial copying src/opensocial/data.py -> build/lib/opensocial copying src/opensocial/mock_http.py -> build/lib/opensocial copying src/opensocial/__init__.py -> build/lib/opensocial copying src/opensocial/http.py -> build/lib/opensocial copying src/opensocial/request.py -> build/lib/opensocial creating build/lib/opensocial/oauth copying src/opensocial/oauth/__init__.py -> build/lib/opensocial/oauth creating build/lib/opensocial/simplejson copying src/opensocial/simplejson/encoder.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/scanner.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/jsonfilter.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/__init__.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/decoder.py -> build/lib/opensocial/simplejson creating build/lib/opensocial/Crypto copying src/opensocial/Crypto/__init__.py -> build/lib/opensocial/Crypto see last rows, only __init__.py copied so, solution seems to add subpackages to setup.py: packages=['opensocial', 'opensocial.oauth', 'opensocial.simplejson', 'opensocial.Crypto', 'opensocial.Crypto.PublicKey', 'opensocial.Crypto.Util']
    Hi, i have a problem using a package, it's distutils based, and looks like it has not correct setup.py cause there are no Crypto subpackages in build of package, you can reproduce: What steps will reproduce the problem? anatoly@anatoly-desktop:~/install/opensocial-python-client$ ~/python/gadoz-dev-2.5/bin/python setup.py build running build running build_py creating build creating build/lib creating build/lib/opensocial copying src/opensocial/errors.py -> build/lib/opensocial copying src/opensocial/validator.py -> build/lib/opensocial copying src/opensocial/data.py -> build/lib/opensocial copying src/opensocial/mock_http.py -> build/lib/opensocial copying src/opensocial/__init__.py -> build/lib/opensocial copying src/opensocial/http.py -> build/lib/opensocial copying src/opensocial/request.py -> build/lib/opensocial creating build/lib/opensocial/oauth copying src/opensocial/oauth/__init__.py -> build/lib/opensocial/oauth creating build/lib/opensocial/simplejson copying src/opensocial/simplejson/encoder.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/scanner.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/jsonfilter.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/__init__.py -> build/lib/opensocial/simplejson copying src/opensocial/simplejson/decoder.py -> build/lib/opensocial/simplejson creating build/lib/opensocial/Crypto copying src/opensocial/Crypto/__init__.py -> build/lib/opensocial/Crypto see last rows, only __init__.py copied so, solution seems to add subpackages to setup.py: packages=['opensocial', 'opensocial.oauth', 'opensocial.simplejson', 'opensocial.Crypto', 'opensocial.Crypto.PublicKey', 'opensocial.Crypto.Util']

Last 30 days

  • Dec 10, 2009
    issue 31 (exceptions.NameError when VERBOSE > 0) reported by proppy   -   What steps will reproduce the problem? 1. in http.py set VERBOSE = 1 2. run an opensocial request What is the expected output? What do you see instead? File Edit Options Buffers Tools Help PokerResource: *ERROR* (x-forwarded-for:91.121.220.73, 10.10.1.47) Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 195, in addCallback callbackKeywords=kw) File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 186, in addCallbacks self._runCallbacks() File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 328, in _runCallbacks self.result = callback(self.result, *args, **kw) File "/usr/lib/python2.5/site-packages/pokernetwork/pokersite.py", line 459, in <lambda> d.addCallback(lambda x: defer.maybeDeferred(pipe, self, request, packet)) --- <exception caught here> --- File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 106, in maybeDeferred result = f(*args, **kw) File "/usr/share/pyshared/pokersocial/auth.py", line 77, in rest_filter update_session(site, request) File "/usr/share/pyshared/pokersocial/auth.py", line 33, in update_session info = Pokersocial.importUser(site.resource.service, container, serial) File "/usr/lib/python2.5/site-packages/pokersocial/core.py", line 292, in importUser person = container['context'].fetch_person(str(serial), [ 'nickname' ]) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 121, in fetch_person return self.send_request(request) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 153, in send_request batch.send(self) File "/usr/lib/python2.5/site-packages/opensocial/request.py", line 317, in send container.send_request_batch(self, False) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 174, in send_request_batch self._send_rpc_requests(batch) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 212, in _send_rpc_requests json = self._handle_response(http_response) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 245, in _handle_response logging.info("http_response.content => %s" % http_response.content) exceptions.NameError: global name 'logging' is not defined What version of the product are you using? On what operating system? ii python-opensocial-python-client 0.3.0-1 OpenSocial library enables you to work with OpenSocial on debian GNU/Linux Please provide any additional information below. I believe the following patch, that had the missing import fixes this issue.
    What steps will reproduce the problem? 1. in http.py set VERBOSE = 1 2. run an opensocial request What is the expected output? What do you see instead? File Edit Options Buffers Tools Help PokerResource: *ERROR* (x-forwarded-for:91.121.220.73, 10.10.1.47) Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 195, in addCallback callbackKeywords=kw) File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 186, in addCallbacks self._runCallbacks() File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 328, in _runCallbacks self.result = callback(self.result, *args, **kw) File "/usr/lib/python2.5/site-packages/pokernetwork/pokersite.py", line 459, in <lambda> d.addCallback(lambda x: defer.maybeDeferred(pipe, self, request, packet)) --- <exception caught here> --- File "/usr/lib/python2.5/site-packages/twisted/internet/defer.py", line 106, in maybeDeferred result = f(*args, **kw) File "/usr/share/pyshared/pokersocial/auth.py", line 77, in rest_filter update_session(site, request) File "/usr/share/pyshared/pokersocial/auth.py", line 33, in update_session info = Pokersocial.importUser(site.resource.service, container, serial) File "/usr/lib/python2.5/site-packages/pokersocial/core.py", line 292, in importUser person = container['context'].fetch_person(str(serial), [ 'nickname' ]) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 121, in fetch_person return self.send_request(request) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 153, in send_request batch.send(self) File "/usr/lib/python2.5/site-packages/opensocial/request.py", line 317, in send container.send_request_batch(self, False) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 174, in send_request_batch self._send_rpc_requests(batch) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 212, in _send_rpc_requests json = self._handle_response(http_response) File "/usr/lib/python2.5/site-packages/opensocial/__init__.py", line 245, in _handle_response logging.info("http_response.content => %s" % http_response.content) exceptions.NameError: global name 'logging' is not defined What version of the product are you using? On what operating system? ii python-opensocial-python-client 0.3.0-1 OpenSocial library enables you to work with OpenSocial on debian GNU/Linux Please provide any additional information below. I believe the following patch, that had the missing import fixes this issue.
  • Dec 08, 2009
    r85 (Tagging the 3.0.1 release ) committed by api.kurrik.g00g1e   -   Tagging the 3.0.1 release
    Tagging the 3.0.1 release
  • Dec 08, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by arne.roomann.kurrik   -   Revision r84 Edited wiki page through web user interface.
    Revision r84 Edited wiki page through web user interface.
  • Dec 08, 2009
    r83 (Updating to a new version of the client) committed by api.kurrik.g00g1e   -   Updating to a new version of the client
    Updating to a new version of the client
  • Dec 08, 2009
    opensocial-python-client-0.3.1.tar.bz (OpenSocial Python Client 0.3.1 (tar.bz)) file uploaded by arne.roomann.kurrik   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Dec 08, 2009
    opensocial-python-client-0.3.1.tar.gz (OpenSocial Python Client 0.3.1 (tar.gz)) file uploaded by arne.roomann.kurrik   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive
  • Dec 08, 2009
    opensocial-python-client-0.3.1.zip (OpenSocial Python Client 0.3.1 (zip)) file uploaded by arne.roomann.kurrik   -  
    Labels: Featured Type-Archive
    Labels: Featured Type-Archive

Earlier this year

  • Nov 13, 2009
    r82 (* Added classes to fetch Groups, Albums, MediaItems, StatusM...) committed by sushruth.m   -   * Added classes to fetch Groups, Albums, MediaItems, StatusMood, StatusMoodComments, Supported fields and Create Notifications. *Added myspace09_test.py that contains testcases to validate the above mentioned classes against myspace rest container.
    * Added classes to fetch Groups, Albums, MediaItems, StatusMood, StatusMoodComments, Supported fields and Create Notifications. *Added myspace09_test.py that contains testcases to validate the above mentioned classes against myspace rest container.
  • Oct 21, 2009
    r81 (Checking in some preset container context objects. TODO: do...) committed by api.kurrik.g00g1e   -   Checking in some preset container context objects. TODO: document these and use in samples, unit tests.
    Checking in some preset container context objects. TODO: document these and use in samples, unit tests.
  • Oct 13, 2009
    r80 (Pulling crypto lib from correct source) committed by api.kurrik.g00g1e   -   Pulling crypto lib from correct source
    Pulling crypto lib from correct source
  • Oct 13, 2009
    r79 (Added validator tests, fixed some validator logic (was modif...) committed by api.kurrik.g00g1e   -   Added validator tests, fixed some validator logic (was modifying the params array).
    Added validator tests, fixed some validator logic (was modifying the params array).
  • Oct 13, 2009
    r78 (Added online_tests.py) committed by api.kurrik.g00g1e   -   Added online_tests.py
    Added online_tests.py
  • Oct 09, 2009
    r77 (Changing test structure into offline / online tests) committed by api.kurrik.g00g1e   -   Changing test structure into offline / online tests
    Changing test structure into offline / online tests
  • Oct 07, 2009
    r76 (Renamed run_system_tests to run_online_tests, to make it mor...) committed by api.kurrik.g00g1e   -   Renamed run_system_tests to run_online_tests, to make it more clear what was being tested.
    Renamed run_system_tests to run_online_tests, to make it more clear what was being tested.
  • Oct 07, 2009
    r75 (Cleaned up the unit test implementation a bit. Simplified M...) committed by api.kurrik.g00g1e   -   Cleaned up the unit test implementation a bit. Simplified MockUrlFetch to help the tests be more readable (responses are returned in order, rather than being matched to specific requests). Removed test_data, since that should belong in the unit test classes themselves. Cleaned up assertions in client_tests, hopefully they're more readable now.
    Cleaned up the unit test implementation a bit. Simplified MockUrlFetch to help the tests be more readable (responses are returned in order, rather than being matched to specific requests). Removed test_data, since that should belong in the unit test classes themselves. Cleaned up assertions in client_tests, hopefully they're more readable now.
  • Oct 07, 2009
    r74 (Fixing failing tests) committed by api.kurrik.g00g1e   -   Fixing failing tests
    Fixing failing tests
  • Oct 05, 2009
    BecomingAContributor (How to become a contributor and submit patches) Wiki page edited by api.kurrik.g00g1e   -   Revision r73 Edited wiki page through web user interface.
    Revision r73 Edited wiki page through web user interface.
  • Oct 02, 2009
    AlternateAuthMechanisms (Covers alternate auth mechanisms available in the library) Wiki page commented on by vctr.dumitru   -   =dsds= dsds
    =dsds= dsds
  • Oct 01, 2009
    issue 30 (ImportError: No module named Crypto.PublicKey) reported by robi123   -   What steps will reproduce the problem? 1. attempt to create an activity What is the expected output? What do you see instead? ImportError: No module named Crypto.PublicKey What version of the product are you using? On what operating system? trunk as of today's date (r72) Please provide any additional information below. --- src/opensocial/Crypto/PublicKey/pubkey.py (revision 72) +++ src/opensocial/Crypto/PublicKey/pubkey.py (working copy) @@ -13,7 +13,7 @@ __revision__ = "$Id: pubkey.py,v 1.11 2003/04/03 20:36:14 akuchling Exp $" import types, warnings -from Crypto.Util.number import * +from opensocial.Crypto.Util.number import * --- src/opensocial/Crypto/PublicKey/RSA.py (revision 72) +++ src/opensocial/Crypto/PublicKey/RSA.py (working copy) @@ -12,8 +12,8 @@ __revision__ = "$Id: RSA.py,v 1.20 2004/05/06 12:52:54 akuchling Exp $" -from Crypto.PublicKey import pubkey -from Crypto.Util import number +from opensocial.Crypto.PublicKey import pubkey +from opensocial.Crypto.Util import number try: from Crypto.PublicKey import _fastmath
    What steps will reproduce the problem? 1. attempt to create an activity What is the expected output? What do you see instead? ImportError: No module named Crypto.PublicKey What version of the product are you using? On what operating system? trunk as of today's date (r72) Please provide any additional information below. --- src/opensocial/Crypto/PublicKey/pubkey.py (revision 72) +++ src/opensocial/Crypto/PublicKey/pubkey.py (working copy) @@ -13,7 +13,7 @@ __revision__ = "$Id: pubkey.py,v 1.11 2003/04/03 20:36:14 akuchling Exp $" import types, warnings -from Crypto.Util.number import * +from opensocial.Crypto.Util.number import * --- src/opensocial/Crypto/PublicKey/RSA.py (revision 72) +++ src/opensocial/Crypto/PublicKey/RSA.py (working copy) @@ -12,8 +12,8 @@ __revision__ = "$Id: RSA.py,v 1.20 2004/05/06 12:52:54 akuchling Exp $" -from Crypto.PublicKey import pubkey -from Crypto.Util import number +from opensocial.Crypto.PublicKey import pubkey +from opensocial.Crypto.Util import number try: from Crypto.PublicKey import _fastmath
  • Oct 01, 2009
    r72 (Had the wrong key for posting activity payloads) committed by api.kurrik.g00g1e   -   Had the wrong key for posting activity payloads
    Had the wrong key for posting activity payloads
  • Oct 01, 2009
    HowToActivities (How to create and fetch activities) Wiki page edited by api.kurrik.g00g1e   -   Revision r71 Edited wiki page through web user interface.
    Revision r71 Edited wiki page through web user interface.
  • Oct 01, 2009
    r70 (Fixed a typo for creating activities. Fixed a typo in the v...) committed by api.kurrik.g00g1e   -   Fixed a typo for creating activities. Fixed a typo in the validator code. Added Crypto lib to setup.py. Added Crypto text to the NOTICE.
    Fixed a typo for creating activities. Fixed a typo in the validator code. Added Crypto lib to setup.py. Added Crypto text to the NOTICE.
  • Sep 30, 2009
    HowToActivities (How to create and fetch activities) Wiki page added by api.kurrik.g00g1e   -   Revision r69 Created wiki page through web user interface.
    Revision r69 Created wiki page through web user interface.
  • Sep 30, 2009
    issue 12 (opensocial.simplejson is missing in setup.py) Status changed by api.kurrik.g00g1e   -  
    Status: Fixed
    Status: Fixed
  • Sep 30, 2009
    issue 23 (wiki error, GettingStarted) Status changed by api.kurrik.g00g1e   -  
    Status: Fixed
    Status: Fixed
  • Sep 30, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page edited by api.kurrik.g00g1e   -   Revision r68 Edited wiki page through web user interface.
    Revision r68 Edited wiki page through web user interface.
  • Sep 30, 2009
    ProjectRoadmap (Roadmap for releases of the client library) Wiki page added by api.kurrik.g00g1e   -   Revision r67 Created wiki page through web user interface.
    Revision r67 Created wiki page through web user interface.
  • Sep 30, 2009
    TableOfContents (Documentation Table of Contents) Wiki page edited by api.kurrik.g00g1e   -   Revision r66 Edited wiki page through web user interface.
    Revision r66 Edited wiki page through web user interface.
  • Sep 30, 2009
    r65 (Added request validation classes.) committed by api.kurrik.g00g1e   -   Added request validation classes.
    Added request validation classes.
  • Sep 30, 2009
    r64 (Added activity support. Auto-detect 'fields' parameter for ...) committed by api.kurrik.g00g1e   -   Added activity support. Auto-detect 'fields' parameter for App Data updates.
    Added activity support. Auto-detect 'fields' parameter for App Data updates.
  • Sep 30, 2009
    HowToSocialCalls (Overview of using the library) Wiki page edited by api.kurrik.g00g1e   -   Revision r63 Edited wiki page through web user interface.
    Revision r63 Edited wiki page through web user interface.
  • Sep 30, 2009
    HowToAppData (How to request and update AppData) Wiki page added by api.kurrik.g00g1e   -   Revision r62 Created wiki page through web user interface.
    Revision r62 Created wiki page through web user interface.
  • Sep 30, 2009
    TableOfContents (Documentation Table of Contents) Wiki page edited by api.kurrik.g00g1e   -   Revision r61 Edited wiki page through web user interface.
    Revision r61 Edited wiki page through web user interface.
  • Sep 30, 2009
    HowToPeople (How to request data about people) Wiki page added by api.kurrik.g00g1e   -   Revision r60 Created wiki page through web user interface.
    Revision r60 Created wiki page through web user interface.
  • Sep 30, 2009
    HowToSocialCalls (Overview of using the library) Wiki page added by api.kurrik.g00g1e   -   Revision r59 Created wiki page through web user interface.
    Revision r59 Created wiki page through web user interface.
  • Sep 30, 2009
    issue 29 (bug when porfile has no friends) reported by arkanjuca   -   What steps will reproduce the problem? 1. create a profile without friends 2. try to fetch friends 3. ??? i know its a strange case, but it happened with me, my client had a profile without friends :/ traceback of the error: Traceback (most recent call last): File "/base/data/home/apps/ccapp- veja/1.336591347300451121/veja_orkut/views.py", line 36, in new_method data = simplejson.dumps(method(*args,**kwargs),ensure_ascii=False) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/veja_orkut/views.py", line 373, in get_user_data activities = get_friends_activities(profile.profile_id,many=7) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/veja_orkut/views.py", line 69, in get_friends_activities for friend in orkut_api.get_app_friends(cid): File "/base/data/home/apps/ccapp-veja/1.336591347300451121/orkut.py", line 26, in get_app_friends return self.container.send_request(people_request) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/__init__.py", line 159, in send_request return self._send_rest_request(request) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/__init__.py", line 190, in _send_rest_request return request.process_json(json) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/request.py", line 126, in process_json return data.Collection.parse_json(json, data.Person) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/data.py", line 132, in parse_json for fields in json_list: TypeError: 'NoneType' object is not iterable
    What steps will reproduce the problem? 1. create a profile without friends 2. try to fetch friends 3. ??? i know its a strange case, but it happened with me, my client had a profile without friends :/ traceback of the error: Traceback (most recent call last): File "/base/data/home/apps/ccapp- veja/1.336591347300451121/veja_orkut/views.py", line 36, in new_method data = simplejson.dumps(method(*args,**kwargs),ensure_ascii=False) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/veja_orkut/views.py", line 373, in get_user_data activities = get_friends_activities(profile.profile_id,many=7) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/veja_orkut/views.py", line 69, in get_friends_activities for friend in orkut_api.get_app_friends(cid): File "/base/data/home/apps/ccapp-veja/1.336591347300451121/orkut.py", line 26, in get_app_friends return self.container.send_request(people_request) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/__init__.py", line 159, in send_request return self._send_rest_request(request) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/__init__.py", line 190, in _send_rest_request return request.process_json(json) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/request.py", line 126, in process_json return data.Collection.parse_json(json, data.Person) File "/base/data/home/apps/ccapp- veja/1.336591347300451121/opensocial/data.py", line 132, in parse_json for fields in json_list: TypeError: 'NoneType' object is not iterable
  • Sep 29, 2009
    AlternateAuthMechanisms (Covers alternate auth mechanisms available in the library) Wiki page edited by api.kurrik.g00g1e   -   Revision r58 Edited wiki page through web user interface.
    Revision r58 Edited wiki page through web user interface.
  • Sep 29, 2009
    HowToConnecting (Connecting to OpenSocial containers) Wiki page added by api.kurrik.g00g1e   -   Revision r57 Created wiki page through web user interface.
    Revision r57 Created wiki page through web user interface.
  • Sep 29, 2009
    GettingStarted (Downloading and installing the Python client library.) Wiki page edited by api.kurrik.g00g1e   -   Revision r56 Edited wiki page through web user interface.
    Revision r56 Edited wiki page through web user interface.
  • Sep 29, 2009
    GettingStarted (Downloading and installing the Python client library.) Wiki page edited by api.kurrik.g00g1e   -   Revision r55 Edited wiki page through web user interface.
    Revision r55 Edited wiki page through web user interface.
  • Sep 29, 2009
    TableOfContents (Documentation Table of Contents) Wiki page added by api.kurrik.g00g1e   -   Revision r54 Created wiki page through web user interface.
    Revision r54 Created wiki page through web user interface.
  • Sep 09, 2009
    AlternateAuthMechanisms (Covers alternate auth mechanisms available in the library) Wiki page commented on by kibreabt   -   1231
    1231
  • Aug 26, 2009
    r53 (Adds required methods to TextRpcRequest for supporting conta...) committed by api....@google.com   -   Adds required methods to TextRpcRequest for supporting container.send_request
    Adds required methods to TextRpcRequest for supporting container.send_request
  • Aug 26, 2009
    r52 (Adding svn:ignore to eclipse files) committed by api.kurrik.g00g1e   -   Adding svn:ignore to eclipse files
    Adding svn:ignore to eclipse files
  • Aug 26, 2009
    r51 (Added support for an RPC class which takes a raw text string...) committed by api.kurrik.g00g1e   -   Added support for an RPC class which takes a raw text string as its initializer. This should help debugging requests, since you can create a raw request by hand and tweak it as needed.
    Added support for an RPC class which takes a raw text string as its initializer. This should help debugging requests, since you can create a raw request by hand and tweak it as needed.
  • Aug 24, 2009
    issue 5 (Support for fetching AppData) Status changed by api.kurrik.g00g1e   -   Should be fixed
    Status: Fixed
    Should be fixed
    Status: Fixed
  • Jul 31, 2009
    AlternateAuthMechanisms (Covers alternate auth mechanisms available in the library) Wiki page edited by api.kurrik.g00g1e   -   Revision r50 Edited wiki page through web user interface.
    Revision r50 Edited wiki page through web user interface.
  • Jul 31, 2009
    AlternateAuthMechanisms (Covers alternate auth mechanisms available in the library) Wiki page edited by api.kurrik.g00g1e   -   Revision r49 Edited wiki page through web user interface.
    Revision r49 Edited wiki page through web user interface.
 
Hosted by Google Code