查找gdata条目的content元素

时间:2012-07-07 18:44:05

标签: google-docs gdata gdata-api

Google文档列表API(v3)多次引用“内容元素”。在content元素中有一个URI来导出文件和文件的mime类型。

如何找到内容元素并提取该信息?

谢谢!

1 个答案:

答案 0 :(得分:0)

我使用google oauth playground发送样本请求 - 在pastebin上发布了回复...

在'title'元素之后,您可以看到您使用包含node = export的URI请求的'content'元素。

"content":{
"type":"text/html",
"src":"https://docs.google.com/feeds/download/documents/export/Export?id\u003d1mCHy6rcaqFoyZaJ-3qwRBZyirxnmew1m4CfEtOWAhjw\u0026v\u003d3"
},

一旦我在游乐场进行了身份验证,我就在这个例子中使用了以下请求:

https://docs.google.com/feeds/default/private/full?v=3&alt=json&max-results=1

在我的回答here

中使用playground和json prettyprint说明