在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 /文件。
此后不会上传任何内容。这是一种正确的接近方式吗?请建议我一个解决方案