将Google文档内容检索到vb窗体中

时间:2013-05-03 18:14:02

标签: google-drive-api

我正在尝试提取go​​ogle驱动器文件的内容。这是一个谷歌文档文件。我有代码来提取整个文档,包括元数据等。我看到了关于此的google api页面:https://developers.google.com/drive/...m_google_drive

我无法从我的代码中解析出来的身体。有没有人这样做过?谢谢,Victor。

Dim request As HttpWebRequest = DirectCast(WebRequest.Create("insert google doc url here"), HttpWebRequest)

                Dim response As HttpWebResponse = DirectCast(request.GetResponse(), HttpWebResponse)

                Dim Stream As Stream = response.GetResponseStream()

                Dim reader As StreamReader = New StreamReader(Stream)

                MsgBox(reader.ReadToEnd)

1 个答案:

答案 0 :(得分:0)

get方法返回导出链接。我认为您可以使用此方法检索文件元数据并导出用于检索内容的链接。您可以将文件导出为“纯文本”格式和RTF格式(以及许多其他格式)。

下面是我提供的示例图片,其中包含文件内容的URL(来自APIs explorer): enter image description here

示例链接:

application/rtf: https://docs.google.com/feeds/download/documents/export/Export?id=ID&exportFormat=rtf

text/plain: https://docs.google.com/feeds/download/documents/export/Export?id=ID&exportFormat=txt