我尝试使用telegram bot api上传文件。文件被发送但接收者看到编码的文件名,如果它包含俄语字母。我发现文件名是用Base64和Utf-8编码的
ImageSource
如何将带有unicode编码的文件发送到客户端以保存文件的全名,包括文件扩展名
尝试在Utf8中编码文件名
fromAsset(imageView.src).then(
(res) => {
imageSource = res;
photo.base64 = imageSource.toBase64String('jpg');
..
}).catch((error)=>{
console.log(error); // here I get TypeError.asset.getImageAsync is not a function
})