Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
397 views

Mystifying “undefined constant” issue with Ruby/Rails

I've got a Rails project where a constant is being nuked at some point while serving a request. I'm using the mime/types and restclient gems. The restclient module defines an extension to MIME which ...
6
votes
3answers
931 views

Basic_auth with rest-client?

Anyone that knows how to do basic_auth with rest-client? http://github.com/archiloque/rest-client I need to create a private repository on GitHub through their Restful API.
6
votes
3answers
1k views

Using restclient with multipart posts

I'm using restclient for a multipart form to send data to a restful web service (it's Panda video encoding service). The trick though, is that the file I am passing into restclient (Technoweenie ...
5
votes
1answer
1k views

Rest-client log in with authlogic

I am trying to use the Rest-client gem to do a few small tasks for my app which uses Authlogic to authenticate users. From Rest-Client's API, I see that one can post data necessary for the log-in ...
3
votes
1answer
467 views

Proper Android REST client

I made my own REST client library for an Android application, but after watching the Google I/O presentation on the subject I realized I had it all wrong (precisely what they show slide 9). Now I'me ...
3
votes
3answers
82 views

How do you avoid fixed resource

Roy Fielding writes A REST API must not define fixed resource names or hierarchies (an obvious coupling of client and server). Servers must have the freedom to control their own namespace. ...
2
votes
2answers
42 views

How to consume terabytes of data using a Java RESTful client

Please could anyone point me in the right direction on how to design/build a web service client that will consume terabytes of data and perform some computation on the retrieved data? I inherited a ...
2
votes
3answers
195 views

Re-factoring a CURL request to Ruby's RestClient

I'm having trouble translating this CURL request into Ruby using RestClient: system("curl --digest -u #{@user}:#{@pass} '#{@endpoint}/#{id}' --form image_file=@'#{path}' -X PUT") I keep getting 400 ...
2
votes
2answers
393 views

RestClient strips out the array of hashes parameter with just the last hash?

I have a condition where i need to pass a parameter as an array of hashes which looks like this: The following is the Rack::Test post method for API call. post "#{url}.json", :api_key => ...
2
votes
1answer
192 views

creating a ruby File object from Magick::Image

I'm trying to post watermarked images to a url using rmagick and rest-client. When I generate the composite image, I save it (.write), read it back in with File.new, and then post that File object. ...
2
votes
1answer
180 views

Binding nested elements in a standard JAXB2 POJO

I have the following document model structure. <rootNode> <node1>someValue</node1> <node2>someValue</node2> <groupOfNodes> <groupNode> ...
2
votes
1answer
282 views

Escape and download URL using Ruby

I'm trying to download the HTML content from a URL without success. Here is the URL: http://example.com/some_string[value] When use RestClient I get this error: URI::InvalidURIError: bad URI(is ...
2
votes
1answer
371 views

Trying to do a simple GET HTTP request on the Facebook API with rest_client but it's not accepting the url, even though the URL works fine

I'm trying to get the data at this url: https://graph.facebook.com/me?access_token=(my access token) When I go to this address in a browser, it works. But I'm trying to use the rest-client gem in ...
2
votes
2answers
6k views

Send and Receive JSON using RestClient and Sinatra

I am trying to send a JSON data to a Sinatra app by RestClient ruby API. At client(client.rb) (using RestClient API) response = RestClient.post 'http://localhost:4567/solve', jdata, :content_type ...
2
votes
1answer
148 views

Changing gmail Settings with Ruby

I need to configure my gmail account(s) programmatically with Ruby. I checked out the apps api and it looks like the simplest possible solution would be to use ClientLogin for logging in and a simple ...
1
vote
1answer
38 views

Not equivalent REST code between php and ruby

I need to post to a REST resource by using ruby rest-client gem. The example of HTTP request is: POST /somefolder HTTP/1.1 Authorization: Basic YWFhOmFw Host: example.com folder: creat and it ...
1
vote
1answer
758 views

Rest-Client Ruby Gem Headers

I'm attempting to use the rest-client gem to post something, but for some reason, I keep getting Internal Server Error. I used Simple REST Client on Chrome, and got the same error unless I sent the ...
1
vote
1answer
297 views

How can I use a PEM certificate with password?

I'm having plenty of trouble trying to use a certificate that has a password on ruby. I'm using rest-client, but that's not a requirement. This is the cURL-equivalent of the call I need to make: ...
1
vote
0answers
583 views

undefined method `request_uri' error when using Rest Client - trying to delete with Facebook Graph

I can trying to use Rest Client to delete an object using the Facebook Graph. def delete_object temp = url_escape('https://graph.facebook.com/'+request_id+'?access_token='+token) p "temp is" ...
1
vote
1answer
247 views

sinatra rest-client etag

My goal is to address "lost update problem" (see http://www.w3.org/1999/04/Editing/) in PUT operations. I am using sinatra, and as a client I use rest_client. How I can check if it works? My client ...
1
vote
4answers
1k views

ruby rest-client: make it never timeout?

I am trying to use ruby rest-client to upload a large number of images to a site that I'm writing. My code looks like: RestClient.post url, :timeout => 90000000, :open_timeout => 90000000, ...
1
vote
1answer
604 views

Can I use rest-client to POST a binary file to HTTP without multipart?

I have tried to do the following, but the web-service is NOT REST and does not take multi-part. What do I do in order to POST the image? @response = ...
0
votes
0answers
20 views

Using rest with load testing software

Can somebody help me with this? I was using rest add on of Firefox to make some requests for testing a server. I wanted to use j meter along with the rest. But when proxied through J meter, the rest ...
0
votes
1answer
54 views

How do I get Rails to log my Rack::CommonLogger messages?

I am using the ruby gem rest-client with rest-client-components. Rest-client-components enables request logging with Rack::CommonLogger. The instructions for enabling it make use of STDOUT: ...
0
votes
1answer
30 views

My JRuby rest-client call doesn't work when I move it to Tomcat

I have a strange problem. I have a JRuby1.9.2/Rails 3.0.10/Ubuntu app which makes a REST call to upload some data to a web service (which itself is a Rails app on Heroku/Bamboo/MRI-1.9.2). require ...
0
votes
1answer
55 views

REST CLient Example in Ruby

Can anyone explain me with an example, by using REST Client to do GET/POST/PUT operations in a Rest web service. In POST/PUT, using REST Client, need to pass the whole xml body to do POST/PUT ...
0
votes
0answers
75 views

Upload to imageshack using RestClient (rails)

I am trying to upload images to imageshack using ruby on rails and RestClient url = "http://www.imageshack.us/upload_api.php?fileupload=" path = "/var/www/myapp/public/images/pics/1301.jpg" file = ...
0
votes
0answers
92 views

rails rest-client 1.6.7 gem doc ri and RDoc error

So I am trying to run the ruby gem rest-client, and the gem installs, but then I get an error message for the ri and RDoc files. ERROR: rdoc/README_rdoc.html: incompatible encoding regexp match ...
0
votes
1answer
98 views

How do I make Ruby's RestClient gem respect content_type on post?

For instance, in the RestClient console: RestClient.post 'http://localhost:5001', {:a => 'b'}, :content_type => 'application/json' This does not send application/json as the content type. ...
0
votes
1answer
108 views

RestClient multipart upload from IO

I am trying to upload data as multipart using RestClient like so: response = RestClient.post(url, io, { :cookies => { 'JSESSIONID' => @sessionid }, :multipart ...
0
votes
1answer
117 views

Use fakeweb or webmock to simulate RestClient::GatewayTimeout in Ruby?

I often see RestClient::GatewayTimeout in my application. I'm trying to figure out how to properly test for this, to make sure my application handles it gracefully. The closest thing to this that I ...
0
votes
1answer
63 views

How to output the generated request and response from Groovy RestClient?

i am currently using the RestClient and cannot seem to figure out how to output the request xml and response xml for debugging and informational purpose... I tried the solution mentioned here: ...
0
votes
0answers
119 views

rest-client post methods

Hi im trying to post something using rest-client. However it doesnt really work. Id ideally want to use RestClient.post and RestClient.get but both dont seem to be working. My code is given below def ...
0
votes
1answer
39 views

ruby rest_client exception

I try to use gem rest client to access some simple REST service, I have installed the rest-client following these instructions, but when try to use the library, I get the following error no such file ...
0
votes
0answers
173 views

http request (using net http or RestClient) inside my rails controller

I have problem creating http request inside my controller action. I used net/http and RestClient but I can't get it to work on my local server url i.e http://localhost:3000/engine/do_process, I ...
0
votes
1answer
199 views

RestTemplate GET request with request params

I have to call a REST webservice and I am planning to use RestTemplate. I looked at examples on how to make a GET request and they are as shown below. String result = ...
0
votes
2answers
198 views

Heroku App: RestClient::InternalServerError

I have built a web app at myapp.heroku.com where "myapp" is actually the random name generated by heroku. When I hit it with my web browser it works. When I hit it with Ruby Rest-Client (gem ...
0
votes
1answer
239 views

Ruby rest_client and windows LIVE connect OAUTH Wrap

Hi all I am trying to get my rails app to talk to Windows LIVE (through OAuth Wrap) so I can retrieve a list of contacts. I am using the rest_client gem to do this. Here is the action code for it: ...
0
votes
2answers
423 views

another openssl on windows problem that VERIFY_NONE doesn't help

I am trying to make a little ruby script to upload my own video And here's the complete code, it's pretty short: require 'openssl' OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE # ...
0
votes
0answers
115 views

Yahoo Contacts API: Adding an Image

I'm using the Yahoo Contacts API to add new contacts to a user's address book via OAuth. In my case I'm using the Ruby rest-client gem. The whole process has been hell, but I've been able to now ...
0
votes
2answers
512 views

How can I easily parse through a response to rest-client API call?

I am using rest-client to make restful API calls. My response can be either in JSON or XML. How can I easily parse the responses? It is pulling Company and Contact information. Is there a way to ...
0
votes
1answer
570 views

File upload with rest-client

Model .. def self.upload_client_document(params) client_document = self.new :uploaded_data => params[:Filedata],:client_id => params[:client_id],:document_name => ...
0
votes
2answers
607 views

archiloque-rest-client: change content-type to multipart/related when posing a file

Using http://github.com/archiloque/rest-client When posting a file using this line, the content type is set as Content-Type: multipart/form-data; boundary=301405 in the header, by default. ...
0
votes
1answer
570 views

RestClient for Ruby with smarkets.com api - Curl to RestClient

the api I'm working with is here: I'm able to log in fine and get back an auth token, but cant figure out how to do anything that requires a token. I get back a forbidden response when I try to get ...
0
votes
2answers
254 views

How do you upload a file with rest-client and specify the filename?

I tried the following to upload a file with RestClient, but the resulting POST always uses the file's filename ("testfile.txt") instead of "file_name.txt": RestClient::Resource.new(path, ...
0
votes
1answer
484 views

Rest-Client Installation not working properly

The following error is displayed in command prompt in Windows 7 C:\Users\rd\Desktop\Training\Problem2\sudoku\sudoku>gem install rest-client WARNING: RubyGems 1.2+ index not found for: ...
0
votes
1answer
573 views

getting internal server error using rest-client in ruby to post to HTTP POST

this is my code and I don't know how to debug it because I just get an "internal server error": I am trying to HTTP POST to an external ASPX: def upload uri = ...
0
votes
1answer
854 views

How do I use rest-client for ruby to post an image?

I am trying to find a way to use the Postful API and I need to post an image in the body of the request. I am trying to use rest-client (but am open to other ways): The error I get when I post is ...
-1
votes
1answer
314 views

How to convert HttpServletRequest to a corresponding HttpClient object

I am pretty new to REST and Web Applications in general. I need to implement a REST call that adds more resources to the system. Some of the resources can be created by only an XML like a Folder. I am ...
-2
votes
0answers
26 views

Parsing json returns result failure [closed]

I would be grateful if anyone could help,here is the json response. 01-18 19:04:38.355: I/restclient(800): {"createDate":1326913482267,"errorInfo":"2501-120118-190442-1103 \nFor input ...