如何仅使用js获取Google文档的名称?

时间:2016-10-04 11:58:24

标签: javascript google-docs-api

我有以这种格式指向Google文档的链接: https://docs.google.com/document/d/googleDocId/edit

当我在slack或skype中发布时,这些程序会显示此doc的真实姓名:

enter image description here

enter image description here

我需要显示"测试文件"我网站上的名字。是否可以只使用javascript进行操作?没有在服务器上创建任何服务?

感谢您的帮助!

2 个答案:

答案 0 :(得分:2)

您需要使用get的{​​{1}}方法,该方法需要一个必填字段Google Drive's API,在您的情况下为fileId

要以编程方式检索文件元数据,请尝试使用

15vISe8Lw841LqdVRtZM3egniCeRcsPXtivqxuh76t6o

我已尝试使用您的文档ID,这是我在成功回复后收到的输出,

enter image description here

因此,您可以使用function printFile(fileId) { var request = gapi.client.drive.files.get({ 'fileId': fileId }); request.execute(function(resp) { console.log('Title: ' + resp.title); console.log('Description: ' + resp.description); console.log('MIME type: ' + resp.mimeType); }); } 属性在您的网站中打印文档磁贴。

希望这有帮助!

答案 1 :(得分:0)

我根据David的答案创建了完整的示例,其中包含加载所需的api并从链接获取fileId:



p1