Hi Michael,

Actually, the Docs Data API group would be the best place to ask. Did
you have trouble getting an answer there?

So I can better understand your problem, you are uploading a
spreadsheet via the Document List API. Then, from the DocumentEntry
object you get back from doing the upload, you want to be able to
access the worksheets feed of the spreadsheet you just uploaded. Is
this correct?

There should be a worksheets feed link that you can retrieve from the
entry. For example, if "entry" is a variable containing a
DocumentEntry, and it is a spreadsheet, you can print out the
worksheets feed URL with the following code:

Console.WriteLine(entry.Links.FindService("http://schemas.google.com/
spreadsheets/2006#worksheetsfeed", "application/atom
+xml").AbsoluteUri);

Hope that helps!

Cheers,
-Jeff

On Feb 7, 10:57 pm, michael kariv <[EMAIL PROTECTED]> wrote:
> I have asked this question in Google Docs Data APIs group, but it was
> probably a wrong place.
>
> So here is the question that spans two services - DocList and
> Spreadsheets.
>
> I have two parts working - I can upload a spreadsheet using DocList
> and I can edit a spreadsheet given url
> such 
> ashttp://spreadsheets.google.com/feeds/worksheets/o17465875873549946849...
>
> Now I need to do it in one go.
> I use .NET client library
> The problem is that no Url property of DocumentEntry class is that
> spreadsheets url
> FeedUri was null, AlternateUri and EditUri had values but not hte one
> i needed.
> Any idea ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to