Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

Trouble including httparty in ruby on rails

I've been trying to use HTTParty in my rails code sudo gem install httparty From the command line I can now successfully do httparty "http://twitter.com/statuses/public_timeline.json" When I try ...
3
votes
1answer
1k views

send json object with httparty

I'm trying to implement the in App purchase from within my iPhone app. To verify the receipt I need to send a json object to the iTunes server. Im trying to do this with the httparty plugin: require ...
3
votes
1answer
335 views

how to mimic a curl action with httparty

I have loved using HTTParty in the past, but at the moment I'm coming up against a problem I haven't been able to figure out yet. The API I'm interacting with is successfully contacted like so: curl ...
2
votes
1answer
285 views

Trying to get list of freinds from twitter using httparty(ruby)

I am trying to get the list of specific user`s friends from twitter. This is my code - require 'rubygems' require 'httparty' class TwitterData include HTTParty base_uri ...
2
votes
3answers
647 views

Unescaping characters in a string with Ruby

Given a string in the following format (the Posterous API returns posts in this format): s="\\u003Cp\\u003E" How can I convert it to the actual ascii characters such that s="<p>"? On OSX, I ...
2
votes
1answer
916 views

Can someone provide an example for how to post XML using HTTParty and Ruby on Rails?

I need to post some xml to a webservice and I'm trying to use HTTParty. Can someone provide an example as to how I go about doing so? Here is the format of the XML I need to post: <Candidate ...
2
votes
2answers
338 views

Is it possible to work with HTTParty request results as an object

I wonder if it possible to work with HTTParty (http://github.com/jnunemaker/httparty) request results as an object. Currently i use string keys to access to values of result: result["imageurl"] or ...
1
vote
1answer
54 views

Using HTTParty with delayed_job

I'm trying to do this with delayed_job and HTTParty: HTTParty.delay.get('http://example.com') It successfully saves to the DJ table as this: --- !ruby/object:Delayed::PerformableMethod object: ...
1
vote
1answer
125 views

JSON Parsing Google API Custom Search Error

I have the following code: require 'rubygems' require 'httparty' require 'pp' require 'json' class Search include HTTParty format :json end x = ...
1
vote
1answer
128 views

How do I error handling with httparty?

I'm working on a Rails application and I'm using httparty to make http requests. How do I do error handling for http errors with httparty? Specifically I'm looking to catch http 502, 503 erros and ...
1
vote
2answers
141 views

Issues with HTTParty.post and Ruby 1.9.2

I used to have the following call working just fine on a Rails app running Ruby 1.8.7: HTTParty.post("my uri", :body => "some body", :headers => { "Content-type" => "text/xml"}) When I run ...
1
vote
1answer
385 views

POST JSON to API using Rails and HTTParty

I would like for a user within my ruby on rails app to be able to submit a ticket to my external ticket management system, squishlist.com. They have an api and instructions as follows. You need to ...
1
vote
1answer
185 views

Using HTTParty to post json to Google Places

I'm trying to figure out how to write a google places POST request using HTTParty. I was able to do a GET request but can't figure out how to work around the fact that Google Places has a nested ...
1
vote
1answer
250 views

HTTParty authentication problem

I am trying to log in with HTTParty. I followed the instruction and still can't get it to work. require 'rubygems' require 'httparty' class LAShowRoom include HTTParty base_uri ...
1
vote
2answers
217 views

Facebook Graph Feed Post Not Including Message

I have the following snippet to post to a user's feed on Facebook: require 'httparty' token = "..." message = "..." url = URI.escape("https://graph.facebook.com/me/feed?access_token=#{token}") ...
1
vote
1answer
578 views

Changing Body Type To JSON Using HTTParty

I am trying to use Ruby on Rails to communicate with the Salesforce API. I can fetch data easily enough but I am having problems posting data to the server. I am using HTTParty as per Quinton Wall's ...
1
vote
1answer
225 views

Ruby/HTTParty: Timing out when adding feed to Google Reader using its API

I'm attempting to add a subscription to Google Reader, using it's API, however I'm getting the following error: execution expired I've had no problems reading (using 'get') a list of ...
1
vote
0answers
295 views

HTTParty to parse HTML

I'm looking for a way to pull specific content off of a web site that is fairly well formed, but not quite perfect xml: <html> <head> <title>title</title> <meta ...
1
vote
2answers
614 views

How to get 302 redirect location in Rails? (have tried HTTParty, Net/Http and RedirectFollower)

Hello i am trying to get Facebook user's album's cover picture. as it's said in the API page, it returns "An HTTP 302 with the URL of the album's cover picture" when getting: http ...
1
vote
2answers
795 views

How to consume Rest API with complex objects using Httparty and Ruby

I am trying to implement call this API method in Ruby https://zferral.com/api-docs/affiliate#aff-create-usage-example which expects this object: { "affiliate" : { "email" : ...
1
vote
2answers
728 views

ruby httparty get response url or id after post

How can I get the response url or id from a rails project with httparty in a separate script after doing a post? ruby script: HTTParty.post('http://localhost:3000/change_logs', parameters) ...
1
vote
0answers
555 views

OAuth and HTTParty

Is it possible to use OAuth with HTTParty? I'm trying to do this API call, but, contradictory to the documentation, it needs authentication. Before you say "Use a Twitter-specific Gem", hear me ...
1
vote
1answer
412 views

How can I get httparty to work with Glassfish? Getting 400 BadRequest response

Using: Glassfish v3. Httparty 0.6.1 & 0.5.2. I'm starting glassfish using "mvn glassfish:run" (maven-glassfish-plugin) Everything works in the application. This url works in RESTClient, cURL, ...
1
vote
2answers
895 views

Trying to connect to a “digest authentication” webservice using HTTParty or Net:HTTP (or etc)

I have been trying to connect to a web service that is using digest authentication. I am able to connect in Safari using user:password@service.site.com/endpoint I have tried in Ruby and Rails to ...
1
vote
1answer
539 views

How can I use HTTParty with UTF-8 encoding?

I have a URL like http://example.com/tag/София/new.json and I want to make a GET request with HTTParty. When I do: HTTPArty.get "http://example.com/tag/София/new.json I get: URI::InvalidURIError at ...
0
votes
1answer
23 views

How do you remove illegal characters from an xml file in HTTParty?

I was trying to download an xml file that has '&' symbols in it using the HTTParty gem and I am getting this error: "treeparser.rb:95:in `rescue in parse' <RuntimeError: Illegal character ...
0
votes
0answers
14 views

Posting to Facebook OG with HTTParty only works from the rails console?

I'm having a really weird problem with my rails app and facebook's open graph beta. Whenever I post an action to an object, Facebook returns an error that seems to indicate the URL of the object can't ...
0
votes
0answers
37 views

HTTParty. Catch auth error before response is parsed with JSON/XML parser

With HTTParty I've come across a situation when I cannot correctly catch the auth error because the JSON or XML parser intercepts the "HTTP Basic: Access denied." response. Here's my code: require ...
0
votes
2answers
31 views

How to keep Ruby object instance variables hidden from view in irb or logs?

I am making a gem to wrap an API. The service requires a few login parameters so I made a Connection class to initialize by passing in all login values, and storing with instance variables. One of ...
0
votes
0answers
36 views

HTTParty parsed_response returns a String instead of Hash

HTTParty's parsed_response method returns a Hash if you get a response code 200 but otherwise it will return a String regardless if the webserver returns a XML response. ...
0
votes
0answers
49 views

HTTParty PUT/POST example

Can someone provide me with examples of POST/PUT/GET/DELETE operations using HTTParty gem over a Rest webservice. For POST, I need to pass XML as the content. Thanks in advance
0
votes
0answers
69 views

Httparty PUT/POST/GET/DELETE Example

I need to do POST/PUT operation using httparty. I have a default class as follows require 'httparty' class Webclient `include HTTParty` `def intialize(options = {})` `# ...
0
votes
1answer
43 views

Can't convert String to integer or undefined method nil for []

Using Httparty, I get the following response @parsed_reponse = > {"items" => {"@no" => "1", "@type" => "book", "@category" => "GENERAL" }} when i use the following code to access ...
0
votes
2answers
36 views

need to parse a string to json format

i have this following string to parse as JSON and send as post request. not sure what is the best way to do this: ...
0
votes
1answer
69 views

HTTParty double escapes my json

I have a few models in Ruby that I need to send to a Java/RestEasy server via HTTParty/Put. configuration_mapping.rb: def as_json(options = {}) {:configGroup => @group, :coordinates => {@key ...
0
votes
1answer
97 views

Cannot get anything in https protocol with curl, httparty or net::http

I am having trouble to get anything using https. I can't fetch anything like: curl -k https://graph.facebook.com or uri = URI('https://graph.facebook.com/davidarturo') Net::HTTP.get(uri) I get: ...
0
votes
0answers
62 views

PayPal Electronic Check ACH Payments with Ruby on Rails and Payflow Pro and HTTParty, connection refused

I need to do ACH payments with payflow pro and activemerchant's payflow pro gateway doesn't allow the check object. I've installed HTTParty and am trying to use that to make a post to the paypal test ...
0
votes
0answers
112 views

How to set content type applcation/json in HttParty in rails 3

I am implementing Httparty in rails. My application is in java and running in tomcat. What I want to do is I want to make json request from rails and post data in java application. But I am suffering ...
0
votes
1answer
58 views

HTTParty default_params Aren't Able to be Set With attr_accessor

I have a class that has a constructor. The constructor passes a param to HTTParty's default_params. However, when I analyze the request, it isn't passing the param. Here's the code: module Dance ...
0
votes
2answers
199 views

How to use basic authentication with httparty in a Rails app?

The command line version of 'httparty' with basic authentication works simple and great: httparty -u username:password http://example.com/api/url But now I'm looking for the way I can add the basic ...
0
votes
1answer
75 views

Use api key in HTTParty

I am trying to access a service which uses the url format. www.example.com/api/API_KEY/action The below code is a small example of what I'm trying to achieve. require 'httparty' class MyAPI ...
0
votes
2answers
87 views

Capture specific request with HTTParty

I would like to capture the full request (raw_request -- what went over the wire) for a given action without using a proxy. I am aware of the debug_output method on the Class, and that might be part ...
0
votes
1answer
163 views

HTTParty and text/xml

I'm trying to make a POST request using HTTParty, in which I need the content-type to be text/xml. How can I make that happen? Right now the API I'm calling is complaining I'm not sending any xml. If ...
0
votes
3answers
307 views

ruby parse HTTParty array - json

Still new to Ruby - I apologize in advance if this has been asked. I am using HTTParty to get data from an API, and it is returning an array of JSON data that I can't quite figure out how to parse. ...
0
votes
2answers
119 views

Python equivalent for HTTParty

I have created an API like project in Ruby on rails using HTTParty gem.Now my boss want me to do the same in Python and I don't know python.So I would like to know is there any equalent gem or default ...
0
votes
1answer
322 views

How do I set HTTParty configuration parameters on my class dynamically?

The simple_client.rb file below works perfectly fine against my emulation cas server; however, the casport.rb file (main file of oa-casport OmniAuth strategy) is not setting or passing the headers / ...
0
votes
2answers
346 views

Ruby: HTTParty: can't format XML POST data correctly?

NOTE: "object" is a placeholder work, as I don't think I should be saying what the controller does specifically. so, I have multiple ways of calling my apps API, the following works in the command ...
0
votes
1answer
67 views

Good ways of uploading text data to sinatra website

I am trying to upload html formatted tables to a Sinatra site. I am using HTTParty to post an html table in the the body. The table consists of 9 columns and 200 rows and HTTParty times out at 60 ...
0
votes
1answer
208 views

HTTParty with Digest Authentication

I would like to connect to an API using Ruby On Rails 2.3.8 and HTTParty gem. My model is the following: class Onnion < ActiveRecord::Base require 'net/http' include HTTParty base_uri ...
0
votes
1answer
155 views

How to write a test to specify the format of a http request in ruby?

I am writing a gem and I want to check that it is performing an http request with the parameters , headers and content that its supposed to pass. How do I write a unit test. I am using httparty to ...

1 2