ObjectiveFlickr照片上传错误

时间:2012-03-13 20:26:48

标签: iphone ios flickr photo-upload

我正在使用ObjectiveFlickr库从我的iPhone应用程序上传照片到Flickr。我可以授权应用程序并执行一般请求,但我在尝试上传照片时收到错误消息。要上传的照片是使用AVFoundation拍摄的图像。以下是相关代码:

UIImage *image = [[UIImage alloc] initWithData:imageData];
if ([[AppDelegate sharedDelegate].apiContext.OAuthToken length]) {
                    NSData *uploadData = UIImageJPEGRepresentation(image, 1);

                   if (!flickrRequest) {
                        flickrRequest = [[OFFlickrAPIRequest alloc] initWithAPIContext:[AppDelegate sharedDelegate].apiContext];
                        flickrRequest.delegate = self;
                        flickrRequest.requestTimeoutInterval = 60.0;
                    }

                    [flickrRequest uploadImageStream:[NSInputStream inputStreamWithData:uploadData] suggestedFilename:@"Test" MIMEType:@"image/jpeg" arguments:[NSDictionary dictionaryWithObjectsAndKeys:@"0", @"is_public", nil]];
                    [UIApplication sharedApplication].idleTimerDisabled = YES;

                    NSLog(@"Can upload photo");

{。1}}对象在.h文件中定义并且flickrRequest'与上述代码有关。

@property方法如下:

OFFlickrRequestDelegate

当我在设备上运行项目时,控制台显示:

- (void)flickrAPIRequest:(OFFlickrAPIRequest *)inRequest imageUploadSentBytes:(NSUInteger)inSentBytes totalBytes:(NSUInteger)inTotalBytes {
    NSLog(@"Success");
}

- (void)flickrAPIRequest:(OFFlickrAPIRequest *)inRequest didCompleteWithResponse:(NSDictionary *)inResponseDictionary {
    NSLog(@"%s %@ %@", __PRETTY_FUNCTION__, inRequest.sessionInfo, inResponseDictionary);
}

- (void)flickrAPIRequest:(OFFlickrAPIRequest *)inRequest didFailWithError:(NSError *)inError {
    NSLog(@"%s %@ %@", __PRETTY_FUNCTION__, inRequest.sessionInfo, inError);
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:[inError description] delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    [alert show];
}

通过API的文档搜索,“错误Can upload photo Success Success Success Success flickrAPIRequest:didFailWithError:(null) Error Domain=org.lukhnos.ObjectiveFlickr Code=2147418115 "The operation couldn‚Äôt be completed. (org.lukhnos.ObjectiveFlickr error 2147418115.)" ”被定义为“2147418115”。我不太确定这意味着什么。同样奇怪 - 当我只是试图上传一张照片时,“成功”出现了四次。

使用ObjectiveFlickr的示例应用程序,“快照并运行”可以在我正在测试的同一设备上上传照片。比较我的应用程序与Snap和Run之间的代码,我没有看到任何可能导致照片无法上传的重大差异。

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

这很奇怪。 OFFlickrAPIRequestFaultyXMLResponseError表示无法将返回的数据解析为XML。如果示例应用程序SnapAndRun正确运行而你的没有,我建议在行NSString *stat = [rsp objectForKey:@"stat"];之后的ObjectiveFlickr.m中添加一行:

NSString *dataString = [[[NSString alloc] initWithData:[request receivedData] encoding:NSUTF8StringEncoding] autorelease];
NSLog(@"received response: %@", dataString);

这可以帮助您找出问题所在(例如,如果它是服务器端问题,或者库错过了某种响应格式)。

答案 1 :(得分:1)

当我收到此错误时,我使用Charles查看发生了什么。 Flickr发回错误说签名无效。看着我的请求,我发现我已经颠倒了键和值的顺序(即我的一个键中有空格,这可能导致签名错误)。