hi guys! I have just started with google spreadsheets api. I'm trying to gain access to my spreadsheets list from a web application, but there is some error that it is driving me crazy. I have followed the tutorial in the python documentation section here: http://code.google.com/intl/it-IT/apis/spreadsheets/data/1.0/developers_guide_python.html#listSpreadsheets
AuthSubURL is generated, and the roundtrip works fine. my page is called back with the token and auth_sub_scopes parameters. Now I get the problem. I can't retrieve the feed list either in singol-use mode or with session token. this is a snippet of my code: feed = None token = request.params['token'] gd_client = gdata.spreadsheet.service.SpreadsheetsService() gd_client.auth_token = token gd_client.UpgradeToSessionToken() # comment for singol-use mode (modity session parameter for authsub request) feed = gd_client.GetSpreadsheetsFeed() if I try the single-use mode I get 404 error, else NonAuthSubToken exception I think I have followed every step in the tutorial and I have registered my domain in google. please I need some help. thank you all and good work
