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'm trying to upload a photo to Flickr using ASIHttpRequest. I can get the user to authorize the app and get the access token. Then when I try to upload a photo it fails with the following error

"NO Error Domain=ASIHTTPRequestErrorDomain Code=3 "Authentication needed" UserInfo=0x9757d0 {NSLocalizedDescription=Authentication needed}"

image is the photo I want to upload,

ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:[NSUrl urlWithString:@"http://api.flickr.com/services/upload/"] autorelease];
NSData *data = UIImagePNGRepresentation(aJob.image);
[request setPostValue:FLICKR_SECRET_KEY forKey:@"api_key"];
[request setPostValue:accessToken forKey:@"auth_token"];
[request setData:data withFileName:fileName andContentType:@"image/jpeg" forKey:@"photo"];

Any tip? Thanks

share|improve this question

2 Answers

I'm not really an expert using the flickr API but maybe this will help you getting things done: Objective Flickr

share|improve this answer

your should define request method.

 [request setRequestMethod:@"POST"];

thanks.

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.