Verified... I redefined the method to exclude the oauth_callback
default from being set and that returned the service to normal
function.

OAuth::Consumer.class_eval do
  def get_request_token(request_options = {}, *arguments)
    response = token_request(http_method, (request_token_url? ?
request_token_url : request_token_path), nil, request_options,
*arguments)
    OAuth::RequestToken.from_hash(self, response)
  end
end

Doug Mentions the changes here for anyone that's curious about what
changed:

http://groups.google.com/group/twitter-development-talk/browse_thread/thread/472500cfe9e7cdb9

Reply via email to