Creating HTML Parsers has never been this simple. Here is how you can create parsers very quickly with minimal code. Do check out the "rasper" gem on RubyGems.
Author: jiren
API Throttling on Requests Per Minute
In my previous blog post I have discussed API designing and versioning. Now I am going to build a simple algorithm to restrict API access based on requests per minute using redis Very often, as an API provider we need to control request traffic based on certain criteria, like account subscription, time interval or requests … Continue reading API Throttling on Requests Per Minute
How To Implement Rails APIs Like A Pro
Today, a web-portal that does not support APIs is not even considered a web portal! This post explains how we can implement Rails APIs in our application. It talks about API keys, API versioning and authentication techniques.