我使用DropBox API在Xamarin.Forms(NET标准)中实现Dropbox。 我上传文件成功,但是下载时出现此错误
Dropbox.Api.BadInputException:调用API函数时出错 “文件/下载”:错误的HTTP“内容类型”标头: “应用程序/ x-www-form-urlencoded”。期望“文本/纯文本”之一, “ text / plain; charset = utf-8”,“ application / octet-stream”, “ application / octet-stream; charset = utf-8”。
using (var client = new DropboxClient(this.AccessToken))
{
using (var response = await client.Files.DownloadAsync(file.FilePath + "/" + file))
{
var pickedFile = await response.GetContentAsByteArrayAsync();
//FileImagePreview.Source = ImageSource.FromStream(() => pickedFile);
}
}
答案 0 :(得分:0)