carolinux / gdata-python-client

Automatically exported from code.google.com/p/gdata-python-client
0 stars 1 forks source link

Copy doesn't work for drawing #432

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

docslist api

feed = gd_client.GetDocList()
for entry in feed.entry:
    if entry.GetDocumentType() == 'drawing':
        new_entry = gd_client.Copy(entry, entry.title.text)

Expected result: copy of drawing

Received result:

gdata.client.RequestError: Server responded with: 500, <errors 
xmlns='http://schemas.google.com/g/2005'>
<error>
<domain>GData</domain>
<code>ServiceException</code>
<internalReason>An unknown error has occurred.</internalReason>
</error>
</errors>

Version gdata-2.0.11

Original issue reported on code.google.com by konrad.s...@gmail.com on 13 Aug 2010 at 12:02

GoogleCodeExporter commented 9 years ago
Copying documents only works for docs, spreadsheets and presentations:

   http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#CopyingDocs

This is a limitation of the underlying API and not an issue with the python 
client library. Sorry!

Original comment by joe.gregorio@gmail.com on 16 Sep 2010 at 8:19