
Untitled
By: a guest on
May 4th, 2012 | syntax:
Objective C | size: 0.49 KB | hits: 18 | expires: Never
// Get URL hashes
NSArray* urlHashes = [self getURLHashes:url];
NSString* urlHash = (NSString*)[urlHashes objectAtIndex:0];
NSString* domainHash = (NSString*)[urlHashes objectAtIndex:1];
// Request URL
NSString* requestURL = [NSString stringWithFormat:@"http://data.nova-initia.com/rf/remog/page/%@/%@.json&LastKey=%@", urlHash, domainHash, self.lastKey];
NSLog(requestURL);
return ([self send_request:requestURL method:@"GET" parameters:@""]);