ColdFusion获取文件夹中的文档列表 - 集合

时间:2012-05-07 21:51:28

标签: google-docs-api

如果我按照我看到的示例来获取集合中的doc项目,我最终得到以下内容。它确实带回了一个条目,但它不是文件夹中的项目,只是文件夹条目本身。

<cfhttp url="https://docs.google.com/feeds/documents/private/full/folder%3A0B_xSYw8SWKixSxxx/contents" method="get" result="result" charset="utf-8"> <cfhttpparam type="header" name="Authorization" value="GoogleLogin auth=#getAuth(variables.docservice)#">

如果我发送 https://docs.google.com/feeds/documents/private/full?showfolders=true 我得到了所有文档和文件夹列表。

我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

如果我正确阅读,那么您需要使用其他标签。

<cfdirectory 
directory = "directory name"
action = "list"
name = "query_name"
sort = "asc"
type = "all">
<cfdump var="#query_name#"/>