feat: Improve Google Drive file upload with correct headers

This commit is contained in:
Taylor Wilsdon (aider)
2024-12-15 18:57:59 -05:00
parent 7d55f9bc2e
commit 29efee8ede
2 changed files with 3 additions and 5 deletions

View File

@@ -126,7 +126,8 @@ export const createPicker = () => {
name: fileName,
url: downloadUrl,
headers: {
'Authorization': `Bearer ${oauthToken}`
'Authorization': `Bearer ${oauthToken}`,
'Content-Type': 'application/json'
}
};
console.log('Resolving picker with:', result);