Skip to content

Instantly share code, notes, and snippets.

@mluton
Created October 10, 2012 17:22
Show Gist options
  • Select an option

  • Save mluton/3867058 to your computer and use it in GitHub Desktop.

Select an option

Save mluton/3867058 to your computer and use it in GitHub Desktop.
AFNetworking Request
[[TTAPIClient sharedInstance] getPath:@"videos.json" parameters:@{@"featured_videos" : @"y"}
success:^(AFHTTPRequestOperation *operation, id response) {
NSLog(@"Response: %@", response);
}
failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error fetching stuff!");
NSLog(@"%@", error);
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment