I can update my item based on its URI as in
query.Uri = new Uri("http://www.google.com/base/feeds/items/
111111111111");
My problem is I only know the item URI because of the value that was
generated after the item was inserted. I got this value by stepping
through the code and copying it.
How do I go about calculating the URI so I can query against it? I do
not want to keep this URI in a database since Google is calculating
it.
I am simply trying to find an item I had inserted earlier.
I am using c#.
thanks