feat: Update Google Drive download URL format for better compatibility

This commit is contained in:
Taylor Wilsdon (aider) 2024-12-15 20:29:12 -05:00
parent 1dce50df12
commit 1feaee8eca

View File

@ -130,9 +130,9 @@ export const createPicker = () => {
throw new Error('Required file details missing');
}
// Construct download URL without embedding token
// Construct download URL using usercontent format
console.log('Constructing download URL for fileId:', fileId);
const downloadUrl = `https://www.googleapis.com/drive/v3/files/${fileId}?alt=media`;
const downloadUrl = `https://drive.usercontent.google.com/u/0/uc?id=${fileId}&export=download`;
console.log('Download URL constructed:', downloadUrl);
console.log('Current token value:', token ? 'Token exists' : 'No token');