gpt4 book ai didi

android - 如何使用 Google Drive API : Insert File 上传 FILE_URI

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:26:51 28 4
gpt4 key购买 nike

在 Android 上,我正在尝试使用 Google Drive API 上传 Cordova/Phonegap getPicture() 的输出:插入文件。有没有办法使用 FILE_URI 而不是 DATA_URL (base64) 来做到这一点?

我首先尝试了 Camera.DestinationType.DATA_URL,但它并没有像预期的那样返回 Base64 数据,它只是返回了与 FILE_URI 相同的内容。所以现在我想弄清楚如何将 FILE_URI 传递给 Google 云端硬盘插入文件(采用 Base64)。有没有办法将 FILE_URI 转换为 Base64?

Cordova 代码:

navigator.camera.getPicture(onSuccess, onFail,
{ quality: 50, destinationType: Camera.DestinationType.FILE_URI });

function onSuccess(imageURI) {
var image = document.getElementById('myImage');
image.src = imageURI;

// need to do something like this:
var fileData = ConvertToBase64(imageURI);
insertFile(fileData);
}

Google 云端硬盘代码:

/**
* Insert new file.
*
* @param {File} fileData File object to read data from.
* @param {Function} callback Function to call when the request is complete.
*/
function insertFile(fileData, callback) {
const boundary = '-------314159265358979323846';
const delimiter = "\r\n--" + boundary + "\r\n";
const close_delim = "\r\n--" + boundary + "--";

var reader = new FileReader();
reader.readAsBinaryString(fileData);
reader.onload = function(e) {
var contentType = fileData.type || 'application/octet-stream';
var metadata = {
'title': fileData.fileName,
'mimeType': contentType
};

var base64Data = btoa(reader.result);
var multipartRequestBody =
delimiter +
'Content-Type: application/json\r\n\r\n' +
JSON.stringify(metadata) +
delimiter +
'Content-Type: ' + contentType + '\r\n' +
'Content-Transfer-Encoding: base64\r\n' +
'\r\n' +
base64Data +
close_delim;

var request = gapi.client.request({
'path': '/upload/drive/v2/files',
'method': 'POST',
'params': {'uploadType': 'multipart'},
'headers': {
'Content-Type': 'multipart/mixed; boundary="' + boundary + '"'
},
'body': multipartRequestBody});
if (!callback) {
callback = function(file) {
console.log(file)
};
}
request.execute(callback);
}
}

最佳答案

我意识到这有点过时了 - 但现在看来您可以在 phoneGap 中使用 FileReader

我还没有测试过这个,但是这样的东西应该也可以工作,没有 Canvas hack。

[编辑 - 测试并修改了下面的代码。对我有用 :D ]

var cfn = function(x) { console.log(x) };
var cameraOps = { quality: 50, destinationType: Camera.DestinationType.FILE_URI };
navigator.camera.getPicture(function(imagePath) {
window.resolveLocalFileSystemURL(imagePath, function(fileEntry) {
fileEntry.file(function (file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("read success!!!");
console.log(evt.target.result);
};
reader.readAsDataURL(file);
}, cfn);
}, cfn);
}, cfn);

关于android - 如何使用 Google Drive API : Insert File 上传 FILE_URI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18861965/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com