アプリからflickr.photos.getInfoメソッドを使用してGET呼び出しを行おうとしています。目標は、写真のIDを使用して写真に関する情報を取得することです。
私の方法:
+(NSDictionary*)photoForId:(NSString *)photoID
{
NSLog(@"photo id = %@", photoID);
NSString *request=[NSString stringWithFormat:@"http://api.flickr.com/services/rest/flickr.photos.getInfo&photo_id=%@&format=json&nojsoncallback=1&extras=original_format,tags,description,geo,date_upload,owner_name&page=1&method=flickr.photos.search", photoID];
NSLog(@"output=%@",[self executeFlickrFetch:request]);
return [[[self executeFlickrFetch:request]valueForKey:@"photos.photo"]lastObject];
}
executeFlickrFetchメソッド:
+ (NSDictionary *)executeFlickrFetch:(NSString *)query
{
query = [NSString stringWithFormat:@"%@&format=json&nojsoncallback=1&api_key=%@", query, FlickrAPIKey];
query = [query stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSStringFromSelector(_cmd), query);
NSData *jsonData = [[NSString stringWithContentsOfURL:[NSURL URLWithString:query] encoding:NSUTF8StringEncoding error:nil] dataUsingEncoding:NSUTF8StringEncoding];
NSError *error = nil;
NSDictionary *results = jsonData ? [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers|NSJSONReadingMutableLeaves error:&error] : nil;
return results;
}
現在、この呼び出しはnullを返しています。写真家や場所で写真をフェッチしているので、executefetchが機能することは知っています。写真IDを把握する必要があります。