如何授权从google-documents list-api获取的内容下载PDF文档

时间:2010-02-18 04:23:07

标签: coldfusion google-docs google-docs-api

我有以下代码授权自己获得的谷歌文档列表:

<cfhttp url="https://www.google.com/accounts/ClientLogin" method="post" result="result" charset="utf-8">
        <cfhttpparam type="formfield" name="accountType" value="HOSTED_OR_GOOGLE">
        <cfhttpparam type="formfield" name="Email" value="abc@gmail.com">
        <cfhttpparam type="formfield" name="Passwd" value="xyz">
        <cfhttpparam type="formfield" name="service" value="writely">
        <cfhttpparam type="formfield" name="source" value="abc-xyz-2010">
    </cfhttp>

现在,我可以通过包含所有文档的xml文件中的content.xmlAttribute来下载word文档和PPT。 但我无法下载PDF文件。我收到的错误消息是“授权要求错误401”。我检查了文档,它说: 也无法为这些类型的文件手动构建下载URL。而是将经过身份验证的HTTP GET发送到条目的src链接:

<content type="text/html" src="https://doc-04-20-docs.googleusercontent.com/docs/secure/m7an0emtau/WJm.../YzI2Y2ExYWVm?h=16655626&e=download&gd=true"/>

有人可以告诉我如何传递授权信息并使PDF下载链接正常工作。 非常感谢提前!!

1 个答案:

答案 0 :(得分:0)

method =“get”替换 method =“post”