编码文件名Telegram bot上传文件

时间:2017-02-01 11:44:22

标签: c# .net character-encoding telegram-bot

我尝试使用telegram bot api上传文件。文件被发送但接收者看到编码的文件名,如果它包含俄语字母。我发现文件名是用Base64和Utf-8编码的

ImageSource

Filename

如何将带有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
})

Result file name

0 个答案:

没有答案