Files - Fetch
List Files in Google Drive using SQL Server
- See SQLHTTP easy setup for Google
- See API Call documentation for parameter values and other information
- Create the stored procedure documented below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
CREATE PROCEDURE usp_Google_Files_Fetch( @Profile nvarchar(100), @QueryParameters varchar(MAX) = NULL, @Response nvarchar(MAX) OUTPUT, @StatusCode int OUTPUT, @StatusDescription nvarchar(MAX) OUTPUT) AS DECLARE @URL nvarchar(MAX) DECLARE @HTTPSessionID uniqueidentifier SET @URL = 'https://www.googleapis.com/drive/v2/files' COLLATE SQL_Latin1_General_CP1_CI_AS IF @QueryParameters IS NOT NULL BEGIN SET @URL = @URL + '?' COLLATE SQL_Latin1_General_CP1_CI_AS + @QueryParameters END EXEC SQLHTTP.net.HTTPSession @HTTPSessionID OUTPUT EXEC usp_Google_Auth_Header @Profile, @HTTPSessionID EXEC SQLHTTP.net.HTTPRequest @HttpSessionID, @URL = @URL, @Method = 'GET', @ContentType = 'application/json', @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT, @Response = @Response OUTPUT GO |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) --Google API Bearer Token expires after an hour EXEC usp_Google_Auth_Refresh @Profile = 'My Google' EXEC usp_Google_Files_Fetch @Profile = 'My Google', @Response = @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT IF @StatusCode >= 400 EXEC SQLHTTP.net.RaiseHttpError @StatusCode, @StatusDescription, @Response ELSE BEGIN DECLARE @X xml SET @X = SQLHTTP.net.Json_To_Xml(@Response, '0') --The XPath syntax below was easily generated by executing the following commands: --EXEC SQLHTTP.net.XQueryHelper @X --and then executing: --EXEC SQLHTTP.net.XQueryHelper @X, 'JsonObject/items/JsonObject' -- SELECT T.C.value(N'@title', N'nvarchar(MAX)') AS title ,T.C.value(N'@id', N'nvarchar(MAX)') AS [id] ,T.C.value(N'@fileSize', N'nvarchar(MAX)') AS [fileSize] ,T.C.value(N'@mimeType', N'nvarchar(MAX)') AS [mimeType] ,T.C.value(N'@downloadUrl', N'nvarchar(MAX)') AS [downloadUrl] FROM @X.nodes(N'/JsonObject/items/JsonObject') T(C) END |
1 2 3 4 5 6 7 |
title id fileSize mimeType downloadUrl ------------------- ----------------------- --------------- ----------------------------- ---------------------------------- iTunesSetup820.exe 0B9cs1-CikJyuN2U4OT... 77690152 application/x-msdos-program https://doc-0o-1o-docs.googleu... Training.mp4 0B9cs1-CikJyuc0VSUE... 3689295 video/mp4 https://doc-0c-1o-docs.googleu... Itinerary.pdf 0B9cs1-CikJyuMDBmMV... 192890 application/pdf https://doc-0k-1o-docs.googleu... |
- About – Fetch
- App – Fetch
- Apps – Fetch
- Change – Fetch
- Changes – Fetch
- Child File – Create
- Child File – Fetch
- Child File – Remove
- Children Files – Fetch
- Comment – Create
- Comment – Delete
- Comment – Fetch
- Comment – Update
- Comments – Fetch
- File – Copy
- File – Delete
- File – Fetch
- File – Patch
- File – Touch
- File – Trash
- File – Untrash
- Files – Fetch
- Parent Folder – Create
- Parent Folder – Fetch
- Parent Folder – Remove
- Parent Folders – Fetch
- Permission – Create
- Permission – Delete
- Permission – Fetch
- Permission – Patch
- Permission – Update
- Permission ID – Fetch
- Permissions – Fetch
- Properties – Fetch
- Property – Create
- Property – Delete
- Property – Fetch
- Property – Update
- Replies – Fetch
- Reply – Create
- Reply – Delete
- Reply – Fetch
- Reply – Update
- Revision – Delete
- Revision – Fetch
- Revision – Update
- Revisions – Fetch
- Start Page Token – Fetch
- Trashed Files – Delete
IMPORTANT DISCLAIMER
CODE/SQL ON THESE PAGES ARE PROVIDED AS-IS AND ARE AVAILABLE FOR ILLUSTRATIVE PURPOSES ONLY.
USERS ARE REQUIRED TO ABIDE BY THE TERMS AND CONDITIONS FOR USING REFERENCED THIRD PARTY WEBSITES AND/OR APIs FROM THEIR RESPECTIVE WEBSITES. WE DO NOT CONDONE ANY VIOLATION OF THIRD PARTY WEBSITES AND/OR APIs TERMS AND CONDITIONS USING OUR SOFTWARE.
USERS SHALL BE SOLELY RESPONSIBLE AND BE SOLELY LIABLE FOR VIOLATION OF ANY RULES SPECIFIED BY THIRD PARTIES FOR USING THEIR WEBSITES AND/OR APIs, OR INFRINGEMENT OF RIGHTS OF SUCH THIRD PARTIES.