我正在尝试使用 RESTful API 从 Dropbox 下载文件。当我遇到其中包含空格的文件“My Photo.png”时,程序停止var request = (HttpWebRequest) WebRequest.Create(requestUri);
它返回 403 错误。如果我删除空格并再次尝试文件下载,它会完美运行。我检查了格式化的 uri,它被返回为“My+Photo.png”,这应该是这样吗?我究竟做错了什么?
var uri = new Uri(new Uri(DropboxRestApi.ApiContentServer),
String.Format("files?root={0}&path={1}",
root, UpperCaseUrlEncode(path)));
我的方法:
private static string UpperCaseUrlEncode(string s)
{
char[] temp = HttpUtility.UrlEncode(s).ToCharArray();
for (int i = 0; i < temp.Length - 2; i++)
{
if (temp[i] == '%')
{
temp[i + 1] = char.ToUpper(temp[i + 1]);
temp[i + 2] = char.ToUpper(temp[i + 2]);
}
}
return new string(temp);
}