Skip to content

Commit

Permalink
Merge pull request #26 from silviuvulcan/feature_teams
Browse files Browse the repository at this point in the history
include support for teams drive
  • Loading branch information
labbots committed Apr 30, 2020
2 parents cee1c55 + 2069a1a commit bd63b2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ driveInfo() {
--silent \
-XGET \
-H "Authorization: Bearer ${TOKEN}" \
"""$API_URL""/drive/""$API_VERSION""/files/""$FOLDER_ID""?fields=""$FETCH""")"
"""$API_URL""/drive/""$API_VERSION""/files/""$FOLDER_ID""?fields=""$FETCH""&supportsAllDrives=true")"

FETCHED_DATA="$(jsonValue "$FETCH" 1 <<< "$SEARCH_RESPONSE")"
{ [[ -z $FETCHED_DATA ]] && jsonValue message 1 <<< "$SEARCH_RESPONSE" && return 1; } || {
Expand Down Expand Up @@ -233,7 +233,7 @@ createDirectory() {
--silent \
-XGET \
-H "Authorization: Bearer ${TOKEN}" \
"""$API_URL""/drive/""$API_VERSION""/files?q=${QUERY}&fields=files(id)")"
"""$API_URL""/drive/""$API_VERSION""/files?q=${QUERY}&fields=files(id)&supportsAllDrives=true")"

FOLDER_ID="$(printf "%s\n" "$SEARCH_RESPONSE" | jsonValue id 1)"

Expand All @@ -247,7 +247,7 @@ createDirectory() {
-H "Authorization: Bearer ${TOKEN}" \
-H "Content-Type: application/json; charset=UTF-8" \
-d "$CREATE_FOLDER_POST_DATA" \
"""$API_URL""/drive/""$API_VERSION""/files?fields=id")"
"""$API_URL""/drive/""$API_VERSION""/files?fields=id&supportsAllDrives=true")"
FOLDER_ID="$(jsonValue id <<< "$CREATE_FOLDER_RESPONSE")"
fi
printf "%s\n" "$FOLDER_ID"
Expand Down

0 comments on commit bd63b2b

Please sign in to comment.