如何将下载文件上传到Xamarin表格IOS的Dropbox中?

时间:2016-12-01 14:12:19

标签: xamarin xamarin.ios xamarin.forms dropbox

在IOS中的XAMARIN表单应用程序中,我想将本地下载的文件上传到Dropbox。我使用Dropbox Core API iOS SDK组件。(by following this article)。我使用依赖服务将Dropbox帐户与App成功链接

if (!Session.SharedSession.IsLinked)
{
 UIWindow window = UIApplication.SharedApplication.KeyWindow;
 UIViewController viewController = window.RootViewController;
 Session.SharedSession.LinkFromController(viewController);
}

它会在Dropbox中创建Apps / ApplicationName文件夹。然后我尝试使用下面的代码

将本地下载文件上传到另一个依赖服务的dropbox中
var restClient = new RestClient(Session.SharedSession);
string dropboxPath = Session.RootDropbox;
restClient.UploadFile(filename, dropboxPath, null, localPath);

filename是文件的名称,dropboxPath = dropbox和localPath,如

  

的/ var /移动/容器/数据/应用/ D4DF47BF5-3A0E-4177-A48E-0D3C245774F1 /文件。

此后不会上传任何内容。这是一种正确的接近方式吗?请建议我一个解决方案

0 个答案:

没有答案