我在我的应用中添加了将图像上传到Flickr的功能。我正在使用ObjectiveFlickr并使用SnapAndRun示例代码,并让它工作。唯一的问题是,它看起来很难看。
我很少做很多网络编码,所以这有点难以理解。
使用OAuth授权我的应用程序似乎已经过了很多功能......必须采用更清洁的方式。
我考虑过使用块,但我没有很好的处理。
我基本上有一个从一个函数开始的5步过程,将一些东西发送到Flickr,它返回另一个函数并调用另一个函数,然后依次...请求令牌......等待回复,放置获取另一个令牌...更多等待......最后点击我的上传代码。
有没有人这样做更干净?我喜欢一点方向。
非常感谢。
答案 0 :(得分:2)
我面临同样的问题,需要通过tumblr进行身份验证。我找到了使用oauth-consumer的解决方案。您可以从git或google-group下载。
您必须在here的flicker api中注册,然后您可以从那里获得CONSUMER_KEY
和CONSUMER_SECRET
。
#define CONSUMER_KEY @"your consumer key here"
#define CONSUMER_SECRET @"your secret key here"
#define authorize_url @"http://www.flickr.com/services/oauth/authorize"
#define request_token_url @"http://www.flickr.com/services/oauth/request_token"
-(void)btnPressed:(id)sender{
self.consumer = [[OAConsumer alloc] initWithKey:CONSUMER_KEY secret:CONSUMER_SECRET];
NSURL *url = [NSURL URLWithString:request_token_url];
OAMutableURLRequest *request = [[OAMutableURLRequest alloc] initWithURL:url
consumer:self.consumer
token:nil // we don't have a Token yet
realm:nil // our service provider doesn't specify a realm
signatureProvider:nil]; // use the default method, HMAC-SHA1
[request setHTTPMethod:@"POST"];
OADataFetcher *fetcher = [[OADataFetcher alloc] init];
[fetcher fetchDataWithRequest:request
delegate:self
didFinishSelector:@selector(requestTokenTicket:didFinishWithData:)
didFailSelector:@selector(requestTokenTicket:didFailWithError:)];
}
- (void)requestTokenTicket:(OAServiceTicket *)ticket didFinishWithData:(NSData *)data {
if (ticket.didSucceed)
{
NSString *responseBody = [[NSString alloc] initWithData:data
encoding:NSUTF8StringEncoding];
self.accessToken= [[OAToken alloc] initWithHTTPResponseBody:responseBody];
NSURL *author_url = [NSURL URLWithString:[ NSString stringWithFormat:authorize_url,self.accessToken.key]];
OAMutableURLRequest *oaR = [[OAMutableURLRequest alloc] initWithURL:author_url consumer:nil token:nil realm:nil signatureProvider:nil];
UIWebView *webView =[[UIWebView alloc] initWithFrame:[UIScreen mainScreen].bounds];
[[[UIApplication sharedApplication] keyWindow] addSubview:webView];
webView.delegate=self;
[webView setScalesPageToFit:YES];
[webView loadRequest:oaR];
}
}
- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {
NSString *url = [[request URL] absoluteString];
NSString *keyOne = @"oauth_token";
NSString *keyTwo = @"oauth_verifier";
NSRange r1 =[url rangeOfString:keyOne];
NSRange r2 =[url rangeOfString:keyTwo];
if (r1.location!=NSNotFound && r2.location!=NSNotFound) {
// Extract oauth_verifier from URL query
NSString* verifier = nil;
NSArray* urlParams = [[[request URL] query] componentsSeparatedByString:@"&"];
for (NSString* param in urlParams) {
NSArray* keyValue = [param componentsSeparatedByString:@"="];
NSString* key = [keyValue objectAtIndex:0];
if ([key isEqualToString:@"oauth_verifier"]) {
verifier = [keyValue objectAtIndex:1];
break;
}
}
if (verifier) {
NSURL* accessTokenUrl = [NSURL URLWithString:@"http://www.tumblr.com/oauth/access_token"];
OAMutableURLRequest* accessTokenRequest =[[OAMutableURLRequest alloc] initWithURL:accessTokenUrl
consumer:self.consumer
token:self.accessToken
realm:nil
signatureProvider:nil];
OARequestParameter* verifierParam =[[OARequestParameter alloc] initWithName:@"oauth_verifier" value:verifier];
[accessTokenRequest setHTTPMethod:@"POST"];
[accessTokenRequest setParameters:[NSArray arrayWithObjects:verifierParam,nil]];
OADataFetcher* dataFetcher = [[OADataFetcher alloc] init];
[dataFetcher fetchDataWithRequest:accessTokenRequest
delegate:self
didFinishSelector:@selector(requestTokenTicketForAuthorization:didFinishWithData:)
didFailSelector:@selector(requestTokenTicket:didFailWithError:)];
} else {
// ERROR!
}
[webView removeFromSuperview];
return NO;
}
if([url isEqualToString:@"http://www.elegantmedia.com.au/"]){
[webView removeFromSuperview];
return NO;
}
return YES;
}
- (void)requestTokenTicketForAuthorization:(OAServiceTicket *)ticket didFinishWithData:(NSData *)data
{
if (ticket.didSucceed)
{
NSString *responseBody = [[NSString alloc] initWithData:data
encoding:NSUTF8StringEncoding];
self.accessToken = [self.accessToken initWithHTTPResponseBody:responseBody];
accessTokenKey=self.accessToken.key;
accessTokenSecret=self.accessToken.secret;
//[self post];
NSString *blogUrl=(NSString *)[[NSUserDefaults standardUserDefaults]objectForKey:@"tumblrBlogUrl"];
if([blogUrl isEqualToString:@""]||blogUrl==nil){
[self getUserInfo];
}
else{
NSData *data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"picture" ofType:@"jpg"]];
[self postPhoto:data caption:@"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when" inBlog:blogUrl];
}
}
else
{
NSString *responseBody = [[NSString alloc] initWithData:data
encoding:NSUTF8StringEncoding];
NSLog(@"Response = %@",responseBody);
}
}
- (void)requestTokenTicket:(OAServiceTicket *)ticket didFailWithError:(NSError *)error
{
NSLog(@"Error = %@",[error localizedDescription]);
}
如果需要任何其他参数,您可以从here获得。
答案 1 :(得分:0)
Flickr guidelines for OAuth似乎很清楚,但是如果你想看一个例子,那就有一个github项目Flickr iOS OAuth。