Newbie question - how to resolve 'wrong status line' error

Hi everyone

I’m learning Ruby on Rails and wanted to perform oAuth as follows for
a third party API. But I get an error as follows:

wrong status line: “”

//Code snippet
require ‘net/https’
require ‘uri’

class UsersController < ApplicationController

def auth
@client_id = params[:client_id]
@auth_url = “https://url/oauth/authorize?
client_id=#{@client_id}”
url = URI.parse(@auth_url )
req = Net::HTTP::Post.new(url.path)
res = Net::HTTP.start(url.host, url.port) {|http|
http.request(req)}

@output = res.body
render :text => @output.inspect

end

end

Any help to proceed is much appreciated.

On Thursday, 24 May 2012 06:13:42 UTC-4, iDev wrote:

//Code snippet

Looks like you’ve hit this issue:

http://stufftohelpyouout.blogspot.com/2010/05/how-to-fix-nethttpbadresponse-wrong.html

Adding the use_ssl option, as that example does, should sort things out.

BTW, you may want to look into using one of the existing OAuth gems -
there
aren’t many good reasons to be re-inventing this particular wheel.

–Matt J.