Google picker selected file callback
问题 i have integrated and try to use the google picker api google picker api but can i turn the callback into file ? so i can upload the file to my server function pickerCallback(data) { if (data.action == google.picker.Action.PICKED) { var fileId = data.docs[0].id; alert('The user selected: ' + fileId); } } 回答1: Once you have the fileId , you can download the file as explained in the documentation for Download files with the Drive API Unfortunately, there is no sample for Browser Javascript, but