My API have file download controller, file name on cyrillic. In Postman Send and Download give me file name like:
%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9.docx
When i send request in chrome i get right file name on cyrillic like:
русский.docx
Corresponding line of my api java code:
response.setHeader("Content-Disposition","attachment; filename=" + URLEncoder.encode(fileName, StandardCharsets.UTF_8));
How get right file name on cyrillic in Postman?
In Crome i have
after request file automatically downloaded
In Postman
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…