vote up 1 vote down star
1

Hi,

I'm writing a client that consumes a non-REST API (i.e. GET site.com/gettreasurehunts), which requires that I specify all parameters (even the resource ID) in the request's HTTP body as a custom XML document. I'd like to use Rails and ActiveResource, but I'd be forced to rewrite almost all of ActiveResource's methods.

Is there another, more polished way of achieving the same result, even using another (Ruby) framework?

flag

2 Answers

vote up 0 vote down check

I don't think there is a way to do this with ActiveResource, for these cases I just use Net::HTTP and Nokogiri

link|flag
vote up 1 vote down

I would recommend HTTParty, it's pretty flexible and I'm sure capable of handling what you need.

Some examples from the project:

pp HTTParty.get('http://whoismyrepresentative.com/whoismyrep.php?zip=46544')
pp HTTParty.get('http://whoismyrepresentative.com/whoismyrep.php', :query => {:zip => 46544})

@auth = {:username => u, :password => p}
options = { :query => {:status => text}, :basic_auth => @auth }
HTTParty.post('http://www.twitter.com/statuses/update.json', options)

And if you need to POST something in the body of the request, simply add :body => "text" to the options hash.

It's very straightforward to work with and I'm currently using it in place of ActiveResource to consume some REST services from a Rails app.

link|flag
after trying HTTParty, i found it has some really nasty bugs (look at my questions for more info), and i've decided to go with Net::HTTP instead. thanks anyway for the reply! – asymmetric Jul 4 at 12:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.