Closed
Description
Signature method types besides HMAC-SHA1 seem to be broken, throwing an UnknownSignatureMethod.
See here for one description of the issue.
My code that also encounters this issue:
session[:oauth] ||= {}
consumer_key = '<key removed>'
consumer_secret = '<secret removed>'
@consumer ||= OAuth::Consumer.new(consumer_key, consumer_secret, {:site => "https://app.smartfile.com", :signature_method => "PLAINTEXT"})
@request_token = @consumer.get_request_token(:oauth_callback => "http://#{request.host}/auth")