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 working with the Facebook method API with iPhone-SDK. After authorizing, I tried to upload an image, using this code:

NSString *link = @"http://www.google.com/logos/2011/houdini11-hp.jpg";  
    NSURL *url1 = [NSURL URLWithString:link];  
    NSData *data1 = [NSData dataWithContentsOfURL:url1];  
    UIImage *img1  = [[UIImage alloc] initWithData:data1];  
    NSMutableDictionary *photos = [NSMutableDictionary dictionaryWithObjectsAndKeys:  
                                img1, @"picture",   
                                  nil];    
    [facebook requestWithMethodName:@"photos.upload"  
                  andParams:photos  
              andHttpMethod:@"POST"  
                andDelegate:self];

I got this error:
"error DOMAIN = Operation could not be completed. (facebookErrDomain error 324.)"

Thanks in advance.

share|improve this question
Are you tried to use NSString *link = @"google.com/logos/2011/houdini11-hp.jpg";; NSMutableDictionary *photos = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"image", @"type", link, @"src" nil]; [facebook requestWithMethodName:@"photos.upload" andParams:photos andHttpMethod:@"POST" andDelegate:self]; – Cricket Apr 13 '11 at 14:39
No. i think we can't give the link in that way. – insomiac Apr 13 '11 at 17:29

1 Answer

You can see all error code here..

http://www.takwing.idv.hk/tech/fb_dev/faq/general/gen_10.html

So error is Missing or invalid image file

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.