调用API函数“文件/下载”时出错

时间:2019-01-13 12:10:15

标签: c# xamarin.forms

我使用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);
    }
}

1 个答案:

答案 0 :(得分:0)