hn_api
A Ruby wrapper for the Hacker News API.
Installation
gem install hn_api
or add gem 'hn_api'
to your Gemfile
and bundle
.
Configuration
Currently, the Hacker News API is read-only and does not require an API key. The API is based at https://hacker-news.firebaseio.com, and is currently on version v0
.
@client = HN::Client.new
@client.configure do |config|
config.api_url = 'https://hacker-news.firebaseio.com/v1/'
end
@client.reset
Usage
Descriptions and examples of the supported actions are below. For a more detailed explanation of available endpoints and an exhaustive list of the properties each response returns, check out the official Hacker News API documentation.
Fetches an item (story, comment, poll, etc.) by id. Returns a Hashie::Mash
.
story = @client.item(8422599)
story.title
story.url
comment_ids = story.kids
first_comment = @client.item(comment_ids.first)
first_comment.text
Fetches a user by unique case-sensitive username. Returns a Hashie::Mash
.
me = @client.user('co_pl_te')
me.karma
me.about.split(?\n).first
me.submitted
Live Data
The following endpoints are updated in real-time and will allow you to observe changes in front page ranking, new items, and new profiles.
Fetches the current top 100 story ids. Returns an Array
.
@client.top_stories
Fetches the current largest item id. Returns a String
.
@client.max_item
Fetches item and profile changes. Returns a Hashie::Mash
.
updates = @client.updates
updates.items
updates.profiles
Contributing to hn_api
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
- Fork the project.
- Start a feature/bugfix branch.
- Commit and push until you are happy with your contribution.
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
Copyright
Copyright (c) 2014 Rahul Horé. See LICENSE.txt for
further details.