我在使用imgur api时遇到了一些麻烦。我将图片转换为base64代码,并尝试将其上传到imgur api。不幸的是,我收到一个错误:
"error": "Invalid URL (data:image/png;base64,iVBORw0KGgoAA..."
这是我的职能:
uploadImageToImgur: function (file) {
const url = 'https://api.imgur.com/3/image',
reader = new FileReader();
reader.onloadend = async function () {
let { result } = reader;
try {
const request = await fetch(url, {
method: 'POST',
headers: {
"Authorization": 'my client key',
},
body: result
});
const response = await request.json();
console.log(response);
} catch (e) {
throw new Error(e);
}
}
if (file) {
reader.readAsDataURL(file);
}
}