Finally got this to work in Ruby using OAuth gem. Below is the code for a before_filter that can be used for Ruby on Rails actions requiring oauth. CONSUMER_KEY = "xxxxxxxx" CONSUMER_SECRET = "yyyyyyyy" require 'oauth' require 'oauth/consumer' require 'oauth/request_proxy...