{"id":12138,"date":"2019-05-24T00:00:00","date_gmt":"2019-05-23T16:00:00","guid":{"rendered":"https:\/\/fgchen.com\/wpedu2\/2019\/05\/24\/google-drive-api-%e6%aa%94%e6%a1%88%e7%9a%84%e6%90%9c%e5%b0%8b\/"},"modified":"2026-03-30T14:41:26","modified_gmt":"2026-03-30T06:41:26","slug":"google-drive-api-%e6%aa%94%e6%a1%88%e7%9a%84%e6%90%9c%e5%b0%8b","status":"publish","type":"post","link":"https:\/\/fgchen.com\/wpedu\/2019\/05\/google-drive-api-%e6%aa%94%e6%a1%88%e7%9a%84%e6%90%9c%e5%b0%8b\/","title":{"rendered":"Google Drive API &#8211;  \u6a94\u6848\u7684\u641c\u5c0b"},"content":{"rendered":"\u4f7f\u7528files:list\u7684q\u53c3\u6578\u53ef\u4ee5\u505a\u5230\u641c\u5c0b\u8cc7\u6599\u593e\u88cf\u7684\u6a94\u6848(\u7d66\u4e88\u5404\u7a2e\u689d\u4ef6)\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">&lt;!DOCTYPE html&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\"&gt;\n    &lt;script src=\"https:\/\/apis.google.com\/js\/api.js\"&gt;&lt;\/script&gt;\n    &lt;script&gt;\n      var FOLDER_ID = \"1QjSA-EBfbAIBoe2UKvkJbBKzkInDLNFu\"; \/\/Google\u8cc7\u6599\u593eID\n      function printFile(fileId) {\n        console.log(fileId)\n        let request = gapi.client.drive.files.list({\n              'q' : \"'\" + fileId + \"' in parents\"\n        });\n        \/\/\u4f7f\u7528gapi.client.drive.files.list\u7684'q'\u53c3\u6578\u9032\u884c\u8cc7\u6599\u593eid\u7684\u5217\u8868\uff0c\u6b64\u65b9\u6cd5\u6703\u56de\u50b3\u8cc7\u6599\u593e\u4e2d\u6240\u6709\u7684\u6a94\u6848(\u5305\u542b\u8cc7\u6599\u593e)\uff0cresp.items\u70ba\u9019\u4e9b\u6a94\u6848\u7684\u96c6\u5408\u7269\u4ef6\u3002\n        request.execute(function (resp) {\n          if(resp &amp;&amp; resp.items.length &gt; 0) { \/\/\u5982\u679cresp\u7269\u4ef6\u4e0d\u662f\u7a7a\u7684\u8a71 \u800c\u4e14 resp.items\u9805\u76ee\u5143\u7d20\u5927\u65bc0\u7684\u8a71\n            for (let i=0; i &lt; resp.items.length; i++){ \/\/\u8d70\u8a2aitems\u9019\u500b\u96c6\u5408\u7269\u4ef6\n              let f = resp.items[i]; \/\/\u4f7f\u7528f\u6307\u5411items\u6307\u5b9a\u7684\u6bcf\u4e00\u500b\u6a94\u6848\u7269\u4ef6\n              \/\/ console.log('Title: ' + f.title);\n              \/\/ console.log('Description: ' + f.description);\n              \/\/ console.log('MIME type: ' + f.mimeType);\n              if (f.mimeType == \"application\/vnd.google-apps.folder\") { \/\/\u5982\u679c\u662f\u8cc7\u6599\u593e\u578b\u614b\u7684\u8a71\n                printFile(f.id); \/\/\u4ee5\u9019\u500b\u8cc7\u6599\u593e\u70ba\u53c3\u6578\u9032\u884c\u905e\u8ff4\u547c\u53eb\uff0c\u8d70\u8a2a\u9019\u500b\u8cc7\u6599\u593e\u6240\u6709\u7684\u6a94\u6848\n              } else {\n                document.getElementById('fileInfo').innerHTML +=\n                                                               \"\u6a94\u6848\u6a19\u984c\uff1a\"+f.title+\"&lt;br&gt;\" +\n                                                               \"\u6a94\u6848\u63cf\u8ff0\uff1a\"+f.description+\"&lt;br&gt;\" +\n                                                               \"\u6a94\u6848\u5efa\u7acb\u65e5\u671f\uff1a\"+f.createdDate+\"&lt;br&gt;\" +\n                                                               \"\u6a94\u6848\u4fee\u6539\u65e5\u671f\uff1a\"+f.modifiedDate+\"&lt;br&gt;\" +\n                                                               \"\u6a94\u6848\u578b\u614b\uff1a\"+f.mimeType+\"&lt;br&gt;\" +\n                                                               \"\u6a94\u6848\u64c1\u6709\u8005\uff1a\"+f.ownerNames +\"&lt;br&gt;&lt;hr&gt;\";\n            }\n          }\n        }\n       });\n      }\n      function tf(){\n        printFile(FOLDER_ID);\n      }\n      function init() {\n          gapi.client.setApiKey('AIzaSyBQJVpHzi7hEMeQgCmZkkIYVjHkrRj1ClQ'); \/\/\u4f60\u7684API\u91d1\u9300\n          gapi.client.load('drive', 'v2').then(tf);\n      }\n      gapi.load('client', init);\n    &lt;\/script&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;p id='fileInfo'&gt;&lt;\/p&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/pre>\n\n&nbsp;","protected":false},"excerpt":{"rendered":"<p>\u4f7f\u7528files:list\u7684q\u53c3\u6578\u53ef\u4ee5\u505a\u5230\u641c\u5c0b\u8cc7\u6599\u593e\u88cf\u7684\u6a94\u6848(\u7d66\u4e88\u5404\u7a2e\u689d\u4ef6) &#038;l &hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","fifu_image_url":"","fifu_image_alt":"","footnotes":""},"categories":[266],"tags":[],"class_list":["post-12138","post","type-post","status-publish","format-standard","hentry","category-266"],"_links":{"self":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts\/12138","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/comments?post=12138"}],"version-history":[{"count":1,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts\/12138\/revisions"}],"predecessor-version":[{"id":13395,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/posts\/12138\/revisions\/13395"}],"wp:attachment":[{"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/media?parent=12138"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/categories?post=12138"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fgchen.com\/wpedu\/wp-json\/wp\/v2\/tags?post=12138"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}