I am developing application to download an image from Dropbox in C#.
I access a folder including Japanese as follows.
-----------------------------------------------------------------
string filePath = ”/漢字.jpg”;
var response = await _DropboxClient.Files.DownloadAsync(filePath);
-----------------------------------------------------------------
The following error occurs then.
-----------------------------------------------------------------
"Error in call to API function \"files/download\": HTTP header \"Dropbox-API-Arg\": could not decode input as JSON"
-----------------------------------------------------------------
Is there any solution?