Google文档有一个“下载为...”菜单选项,有多种格式选择,如PDF,文本等。
如何以编程方式下载特定的Google文档?
答案 0 :(得分:1)
来自how to programmatically download a public Google Drive file?:
如果您知道该链接且该文件是公开的,则您不需要任何Google SDK。只需使用标准HTTP GET方法下载文件即可。
AngularJS示例:
$http.get('/doc_url').
then(function(response) {
// this callback will be called asynchronously
// when the response is available
}, function(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});