我正在尝试通过文档密钥获取特定文档。我正在按照以下说明进行操作:https://code.google.com/apis/spreadsheets/data/3.0/reference.html#ConstructingURIs

我从URL获得密钥:https://spreadsheets.google.com/ccc?key=0Aoz...mcmc&hl=en#gid=0

URL feedUrl = new URL("https://spreadsheets.google.com/feeds/spreadsheets/private/full/0Aoz...mcmc");
SpreadsheetFeed feed = _service.getFeed(feedUrl, SpreadsheetFeed.class);
_entry = feed.getEntries().get(0);


它给了我以下例外:

Exception in thread "main" com.google.gdata.util.ParseException: [Line 1, Column 165]
Invalid root element, expected (namespace uri:local name) of (http://www.w3.org/2005/Atom:feed),
    found (http://www.w3.org/2005/Atom:entry


异常并不是很有意义。我想它希望标签成为根,但它正在变得越来越流行。如果我转到用于feedUrl的URL,则可以获得所需的XML文档(具有名称和我要查找的所有文档)。我在这里看不到我做错了什么,在网上找不到任何可以帮助我的东西。

有人看到我在做什么错吗?

最佳答案

对于返回供稿类型,feedUrl应该为“ https://spreadsheets.google.com/feeds/spreadsheets/private/full/”

10-07 16:17