如何使用传入的图像网址将图像从iOS上传到DropBox?

时间:2014-05-05 09:39:16

标签: ios dropbox-api alassetslibrary

我正在使用iOS应用程序,我必须在Dropbox上传选定的图像。 我正在获取图像的网址,其ID如下所示 -

assets-library://asset/asset.JPG?id=36BF5BC0-09A7-4F77-837D-460BD7DF2580&ext=JPG

现在我必须使用所选图像的这个网址上传该图像。我正在使用下面的方法,但我没有正确的方式上传图像与传入的网址::

 NSString* filename = dropboximagepath;  //i am storing the image url in dropboximagepath

  NSString* destDir = @"";

   NSString* srcPath = @"/";

[self.restClient uploadFile:filename toPath:destDir withParentRev:nil fromPath:srcPath];

请告诉我哪个文件名& fromPath值我将使用,以便我的图像将上传到Dropbox。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我认为你有倒退的参数。

您应该将文件的本地路径传递到fromPath参数,如下所示:

[self.restClient uploadFile:@"photo.jpg"
                     toPath:@"/"
              withParentRev:nil
                   fromPath:dropboximagepath];

这将在用户Dropbox的根目录中创建一个名为“photo.jpg”的文件。