Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the DropBox Api in my app.I just want to upload the image as well as tet file on the server and download it from the server..I have use these methods for that. I am able to upload the both the files but when the matter of downloading the file.I can download only image file with loadThumbnail method and loadFile method is not called.

- (void)loadFile:(NSString *)path intoPath:(NSString *)destinationPath
{
NSLog(@"LoadFile");
}
- (void)loadRandomText {

NSString* photoPath;
NSLog(@"Photo Array--%@",textDataArray);

for (int i = 0 ; i<[textDataArray count]; i++) {
    NSString *temp = [textDataArray objectAtIndex:i];
    NSArray *exztArray = [temp componentsSeparatedByString:@"."];
    NSString *extString=[exztArray objectAtIndex:0];

    if ([extString isEqualToString:@"txt"]) {
        photoPath = [textDataArray objectAtIndex:i];

        [self.restClient loadFile:photoPath intoPath: [self textPAth]]; 
    }
}
}

can anyone please help me to solve this.Thank you in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.