You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -946,11 +946,13 @@ param **`pageSize`** (integer) The maximum number of files to return per page.
946
946
947
947
param **`orderBy`** (string) A comma-separated list of sort keys.
948
948
949
-
Note: Valid keys are 'createdTime', 'folder', 'modifiedByMeTime', 'modifiedTime', 'name', 'name_natural', 'quotaBytesUsed', 'recency', 'sharedWithMeTime', 'starred', and 'viewedByMeTime'.
949
+
Note: Valid keys are `createdTime`, `folder`, `modifiedByMeTime`, `modifiedTime`, `name`, `name_natural`, `quotaBytesUsed`, `recency`, `sharedWithMeTime`, `starred`, and `viewedByMeTime`.
950
950
951
-
Each key sorts ascending by default, but may be reversed with the 'desc' modifier.
951
+
Each key sorts ascending by default, but may be reversed with the `desc` modifier.
952
952
953
-
Example usage: ?orderBy=folder,modifiedTime desc,name.
953
+
Example usage: `folder,modifiedTime%20desc,name` which the white space need to be replaceed with `%20` as this parameter is used as the URI parameter of Google Drive API request endpoint.
954
+
955
+
Please consult [Google Drive API doc](https://developers.google.com/drive/api/reference/rest/v3/files/list) for the more detail.
954
956
955
957
param **`pageToken`** (string) The token for continuing a previous list request on the next page.
0 commit comments