[Google-Docs-Data-APIs] The response from modifying the ACL is returning false-positives

2009-06-22 Thread Daniel Marashlian
Hi Eric, I've been doing some final testing on the Pelotonics integration, and I've noticed the Google Docs API is returning false-positives on modifying the ACL. I added a document, then tried to insert 5 collaborators on that document. I only have 1 transaction in each call (I went away from b

[Google-Docs-Data-APIs] Re: writersCanInvite on new spreadsheets

2009-06-22 Thread Eric (Google)
Confirmed bug: http://code.google.com/p/gdata-issues/issues/detail?id=1289 Eric On Jun 22, 6:43 pm, Daniel Marashlian wrote: > Hi Eric, > > Even with the writersCanInvite property set to false when I try to > create an new/empty spreadsheet, that option is always checked (set to > true) on the

[Google-Docs-Data-APIs] Re: Create a docment with content?

2009-06-22 Thread quill
Hi Eric, If I want to add an image to my new create document at the end of text, what should I do? On Jun 20, 1:49 am, Eric Bidelman wrote: > Yep, there is also this example for your > reference:http://code.google.com/apis/documents/docs/2.0/developers_guide_java > >

[Google-Docs-Data-APIs] writersCanInvite on new spreadsheets

2009-06-22 Thread Daniel Marashlian
Hi Eric, Even with the writersCanInvite property set to false when I try to create an new/empty spreadsheet, that option is always checked (set to true) on the Google Docs Spreadsheet under the sharing->advanced settings. On Documents and Presentations setting the writersCanInvite property to fa

[Google-Docs-Data-APIs] Re: Spreadsheets polling app gives only 503 service unavailable - account lockout?

2009-06-22 Thread Trevor Johns
On Tue, Jun 16, 2009 at 1:09 AM, suneg wrote: > > We have written an app that polls a few of our google spreadsheets > around 100 times pr. day (15 min. interval). We have read from other > posts that this can be considered acceptable. Last week our app > stopped working - getting only 503 servic

[Google-Docs-Data-APIs] Re: Google Docs + Google Apps

2009-06-22 Thread Nate
Oh wow, that did it. Thanks. I changed: $scope to http://docs.google.com/feeds Removed the last two arguments I had passed to getAuthSubSessionToken Pointed getDocumentListFeed to http://docs.google.com/feeds/documents/private/full On Jun 22, 3:55 pm, Eric Bidelman wrote: > Hi Nate, > The Aut

[Google-Docs-Data-APIs] Re: Google Docs + Google Apps

2009-06-22 Thread Eric Bidelman
Hi Nate, The AuthSub/OAuth scope and feed URIs don't change when using a Google Apps account. Just use the ones that are documented. Your scope should be: http://docs.google.com/feeds and your query should hit: http://docs.google.com/feeds/documents/private/full Does that work? Eric On Mon, Jun

[Google-Docs-Data-APIs] Google Docs + Google Apps

2009-06-22 Thread Nate
I started to build a proof of concept based off the sample PHP code in the Google Docs API reference and can't get it to completely work. I did manage to get it to authenticate with our Google Apps login here, but no further. My code looks like this: http://localhost:8081/gapps_testbed/index.ph

[Google-Docs-Data-APIs] JS GDATA API: google.accounts.user.logout() inconsistent behavior

2009-06-22 Thread Kumar
Hi, I would like to get feedback from the community whether the following is an expected behavior or bug. Feedback appreciated. Thanks, Kumar Steps: 1) Got access token for docs.google.com to create spreadsheets. var docToken = google.accounts.user.login('http://docs.google.com/ feeds/'); 2)

[Google-Docs-Data-APIs] Re: API to set the access control to users

2009-06-22 Thread Eric (Google)
Same thread: http://groups.google.com/group/Google-Docs-Data-APIs/browse_thread/thread/8e467a9e3fb6bbd7/6b555d123f31eee0#6b555d123f31eee0 On Jun 22, 3:19 am, anjs wrote: > we have tried to set permissions on the document by passsing owner as > the role. But it throws an exception saying Service

[Google-Docs-Data-APIs] Re: ownership of a google document through API.

2009-06-22 Thread Eric (Google)
I'm able to change the owner for presentations and documents. The same is not true for spreadsheets. I believe that's why the documentation mentioned the limitation. Feature request: http://code.google.com/p/gdata-issues/issues/detail?id=1260 Eric On Jun 22, 2:54 am, anjs wrote: > Through UI

[Google-Docs-Data-APIs] help me out with a code

2009-06-22 Thread sowmya
Hi, Can anyone please help me out with a code to develop a spread sheet in asp.net with C# code...the web page should look like as in google documents spread sheet and it should have a save option to save the datas to the database...please post me back if you could help me out. -Sowmya --~--~--

[Google-Docs-Data-APIs] Full folder path

2009-06-22 Thread Edmon
Hello there How can I get full folder path of a document/folder? There are some functions to do this? I can not find it in the API! Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Docs Data APIs" gro

[Google-Docs-Data-APIs] Re: API to set the access control to users

2009-06-22 Thread anjs
we have tried to set permissions on the document by passsing owner as the role. But it throws an exception saying Service Unavailable. We are using gdata1.3.3 python api. any comments? does this signifies that the api support is still not available? On Jun 22, 2:52 pm, anjs wrote: > Through UI

[Google-Docs-Data-APIs] Re: RequestError: {'status': 401 ... when using text_db to createdatabase

2009-06-22 Thread pm314
On 28 Kwi, 08:29, Racz wrote: > hello there ... i found how get this right > i did like this: > > gdata.alt.appengine.run_on_appengine(self.client._GetDocsClient(), > store_tokens = True, single_user_mode = True) Hello, Does the correct code should look like this: client = gdata.spreadsheet.te

[Google-Docs-Data-APIs] Re: ownership of a google document through API.

2009-06-22 Thread anjs
Through UI following is possible : Account A has a document. Shared the document with the Account B user. Now delete the document from Account A. There is an option available to change the ownership while you delete the document. Changed the ownership to account B and then deleted the document f

[Google-Docs-Data-APIs] Re: API to set the access control to users

2009-06-22 Thread anjs
Through UI following is possible : Account A has a document. Shared the document with the Account B user. Now delete the document from Account A. There is an option available to change the ownership while you delete the document. Changed the ownership to account B and then deleted the document f

[Google-Docs-Data-APIs] Re: ownership of a google document through API.

2009-06-22 Thread anjs
The protocol mentions that the owner of the document cannot be changed via API. Am I correct?? Because it is available via UI. On Jun 18, 10:41 pm, Eric Bidelman wrote: > Everything possible is listed > here:http://code.google.com/apis/documents/docs/2.0/developers_guide_proto... >

[Google-Docs-Data-APIs] Re: how to save xml return by blogger host when i get particular post from blog ?????

2009-06-22 Thread Vasim Padhiyar
Thank u for reply When i click on above URL it shows me below content Sorry... The owner of this group has banned you from this group. Please return to the main page. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

[Google-Docs-Data-APIs] Re: SOS - I'm new at this and really need help. How can I update a spreadsheet document from any of the apis?

2009-06-22 Thread Frank Mantek
Just reading this whole thread... Harry, can you verify for me: you were using the DocumentsRequest class and got confused because there is no updateDocument on that class, so you would have had to mix the new with the old model and found not enough documentation etc to make this understan