在SugarSync中...我使用下面的代码下载PDF文件。保存后当我打开PDF文件时...它说文件已损坏
String Url = "https://api.sugarsync.com/file/:sc:1188464:46431595_224319/version/46431595_150662/data";
WebClient c = new WebClient();
c.Headers["Authorization"] = accessToken;
c.DownloadFile(Url, @"d:\abc.pdf");