# File lib/roauth.rb, line 63 def oauth_params(oauth) oauth = oauth.to_a.select {|key, value| OAUTH_PARAMS.include?(key) } oauth.inject({}) {|hash, (key, value)| hash["oauth_#{key}"] = escape(value) hash } end