redditkit.com Open in urlscan Pro
188.114.97.3  Public Scan

Submitted URL: http://redditkit.com/
Effective URL: https://redditkit.com/
Submission Tags: falconsandbox
Submission: On August 28 via api from US — Scanned from NL

Form analysis 0 forms found in the DOM

Text Content

REDDITKIT

 * Ruby
 * Objective-C


LIBRARIES WHICH MAKE BUILDING APPS WITH THE REDDIT API A BREEZE.
AVAILABLE IN RUBY AND OBJECTIVE-C.

 * Ruby
 * Objective-C


FEATURES

 * EASY AUTHENTICATION
   
   Sign in to your reddit account with a single line.

 * COMPLETE COVERAGE
   
   RedditKit covers the entire reddit API.

 * SIMPLE SETUP
   
   Quick installation with RubyGems or CocoaPods.


EXAMPLES

Check the front page

links = RedditKit.front_page

links.each do |link|
  puts "The link titled '#{link.title}' was posted by #{link.author}."
end


[[RKClient sharedClient] frontPageLinksWithPagination:nil completion:^(NSArray *links, RKPagination *pagination, NSError *error) {
    NSLog(@"Front page links: %@", links);
}];


Ruby
Objective-C

Search for links to GitHub

links = RedditKit.search 'site:github.com subreddit:programming'
puts "GitHub links: #{links}"


[[RKClient sharedClient] search:@"site:github.com" pagination:nil completion:^(NSArray *links, RKPagination *pagination, NSError *error) {
    NSLog(@"GitHub links: %@", links);
}];


Ruby
Objective-C

Browse a user's comments

comments = RedditKit.user_content 'samsymons', :category => :comments

comments.each do |comment|
  puts "The comment '#{comment.text}' was posted at #{comment.posted_at}."
end


[[RKClient sharedClient] commentsByUserWithUsername:@"samsymons" pagination:nil completion:^(NSArray *comments, RKPagination *pagination, NSError *error) {
    NSLog(@"Comments: %@", comments);
}];


Ruby
Objective-C


TAKE REDDITKIT FOR A SPIN.

Head to GitHub to grab the latest versions of the libraries, complete with
documentation and example code.

 * Ruby
 * Objective-C

A project by Sam Symons and others.
Available under the MIT license.