REST Client is an open-source HTTP and REST client for Ruby.

learn more… | top users | synonyms

0
votes
0answers
12 views

RestClient failing to GET resource using SSL client certificate

I'm trying to use RestClient to retrieve a page that's secured using an SSL client certificate. My code is as follows: require 'restclient' p12 = OpenSSL::PKCS12.new(File.read('client.p12'), ...
0
votes
1answer
16 views

RestClient POST doesn't display status on header-only response

I have a Rails action which responds with head :ok, rather than rendering any content. I'm calling this action using RestClient, like so: resp = RestClient.post("#{api_server_url}/action/path", ...
1
vote
1answer
27 views

How to traverse a neo4j graph using python neo4jrestclient

I'm trying to follow the code example here: https://neo4j-rest-client.readthedocs.org/en/latest/traversals.html n1.traverse(types=[client.All.Knows])[:] But I don't understand what kind of obect ...
0
votes
0answers
36 views

Getting correct POST response

I am trying to parse the prices from this page however the GET request returns the page with '$0.00' for the prices. Using Firebug I've found that the site makes a POST request who's response has the ...
0
votes
1answer
27 views

File upload with RestClient.execute and timeout

I am trying to upload a file with the following call RestClient::Request.execute(method: :post, url: Paperclip::Storage::Http::FILE_UPLOAD_LOCATION, password: ...
1
vote
1answer
82 views

Handle Connection and Read Timeouts for RestClient calls in android

I have a RestService interface with many rest calls which I am using throughout my application. I am setting timeouts for handling connection and read-timeouts ClientHttpRequestFactory httpFactory ...
0
votes
0answers
31 views

Post media in RestSharp doesn't work

I want to attach a file to post request, but it doesn't work. public override string Post(string url, object payload) { IRestRequest request = CreateRequest(url, Method.POST); ...
0
votes
1answer
53 views

Using Grails for Web Service Client Project

I'm currently researching on Grails, if it would be a good choice to go with a Web Service client project. It is said Grails is highly beneficial for developing Admin Portals and Prototypes. However ...
2
votes
1answer
38 views

Django Rejecting POST with Firefox RESTClient & Jersey, Works with Chrome POSTMAN and curl

I don't know much about Django but I need to write a client that interacts with a Django REST service. GET works for me in all 4 interfaces I've tried: Chrome POSTMAN, Firefox RESTClient, Jersey ...
0
votes
0answers
21 views

Upload video in chunks in Ruby Restclient

I have 3 uploading urls ["http://uploading.com/file_size/00-10","http://uploading.com/file_size/11-20","http://uploading.com/file_size/21-30"] I have one video file of 4 MB I am using Restclients ...
0
votes
1answer
49 views

How can I display my tweet feed with Rest Client and Codeigniter?

I have got all my tweet feed displaying... but it is completly out of format. COuld anyone point me in the right direction for the finishing touches? I have created a tweet model, with the results ...
0
votes
1answer
46 views

Grails : org.codehaus.groovy.runtime.InvokerInvocationException: java.lang.NoSuchMethodError: org/apache/http/protocol/BasicHttpContext.<init>()V

I'm using grails restclient plugin(':rest:0.7') to consume rest grails rest services. Here is my code: def restClient = new RESTClient(ServiceURL) def httpResponseDecorator = ...
0
votes
1answer
44 views

What is the difference between timeout and open timeout?

In the Ruby RestClient gem, what's the difference between the timeout and open-timeout functionality? ...
0
votes
1answer
78 views

Ruby rest-client persisting cookies

I am using rest-client gem for communication between my CLI client and server. I am using cookies for persisting HTTP session. @cookies = response.cookies ... RestClient.post( :cookies => ...
1
vote
1answer
57 views

SSL Connection error in Ruby 1.9.3-p392+

In Ruby 1.9.3-p385 or earlier, I can successfully run the following piece of code: require 'uri' require 'net/http' uri = URI('https://secure.example.com') http = Net::HTTP.new(uri.host, uri.port) ...
0
votes
1answer
92 views

“bad ecpoint” SSL error on fresh RVM Ruby 1.9.3 install on OSX Mountain Lion

Trying to use Ruby 1.9.3 & rest-client to make https requests like: RestClient.get('https://google.com') always gives me a SSL error, OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 ...
1
vote
1answer
104 views

RestClient basic auth with # in username

I have a problem with a daemon accessing a REST api. The access requires basic authentication. The username and password are fixed and can not be changed. The problem seems to be, that the username ...
1
vote
4answers
44 views

controll null values in fetching json in android

i get this error in fetching json(null values): 03-21 12:32:02.918: E/AndroidRuntime(20383): FATAL EXCEPTION: AsyncTask #2 03-21 12:32:02.918: E/AndroidRuntime(20383): java.lang.RuntimeException: An ...
0
votes
3answers
66 views

error in parsing json inside an AsynTask in Android

I have an AsynTask and trying to retrieve a json and parse it, but I get this error: 03-21 11:38:07.033: E/AndroidRuntime(8439): FATAL EXCEPTION: main 03-21 11:38:07.033: E/AndroidRuntime(8439): ...
0
votes
3answers
98 views

json parse error inside a Asyntask in android

I get this error "Sometimes" in my App, I use a Asyntask: 03-19 08:10:05.768: E/AndroidRuntime(280): FATAL EXCEPTION: main 03-19 08:10:05.768: E/AndroidRuntime(280): java.lang.NumberFormatException: ...
1
vote
0answers
144 views

Stub multipart requests with webmock/rspec

I have been trying for a while to stub multipart requests using webmock and have not found a satisfying solution. Ideally, I would like to stub the request as follow: stub_request(:post, ...
0
votes
1answer
206 views

sending a post request to Rest Client in firefox

i am using Rest Client add on in firefox web browser.I want to test a web service that processes a HTTP POST request and consumes json.How do i test it using Rest Client? If i put a json in the ...
0
votes
1answer
379 views

Retrieving JSON data via HTTP POST using Spring Android Framework

I am using spring android framework for retrieving json data via Http POST. But while consuming the service, at server side the parameter are received null. Following is the android code : ...
-1
votes
1answer
119 views

Consuming Rest webservices using REST client mozzilla

I am able successfully execute GET Request to the service, now I want to know how to execute POST, PUT,DELETE command through Rest client i executed OPTION command and i got this result ...
0
votes
0answers
90 views

Upload image to Wordpress.com Gallery with REST API

I'm trying to upload an image to a WordPress.com blog via their REST API. According to their documentation, I should be able to use the new post endpoint to do so. I'm currently using Rails and ...
0
votes
1answer
167 views

RestClient::Request.execute passing hashset

I have been using a RestClient request as such: response = RestClient.post server_url, post_params, accept: :json Which has been working fine. But I need to increase the timeout as it's not ...
5
votes
6answers
285 views

Fusion Tables: Why do I keep getting a “400 Bad Request” error when trying to update a table style via Ruby's RestClient gem

I'm trying to update a style for one of my Fusion Tables by using the Ruby gem RestClient. Here's my code: require 'rest_client' tableId = '<STRING CONTAINING TABLEID>' styleId = '<STRING ...
0
votes
1answer
121 views

RESTClient for Firefox - Sending Dict as POST parameter

I am trying to post a request to test my website using RESTClient add-on for firefox. In body, I am passing the following text: ["abcd":"12", "ab":"23"] but in backend (django server), I am getting ...
0
votes
1answer
246 views

Rails 3.x uploading a file via rest-client with S3 :: No such file or dir error

I have a an image file stored on S3. I want to upload that file as form data to a remote site. Controller line: response = ...
0
votes
1answer
294 views

Spring controller with @RequestBody and @ModelAttribute for the same parameter

I want to create a controller method that can be called from html form or from a standalone client using resttemplate. The method has this signature: @RequestMapping(method = RequestMethod.POST) ...
0
votes
2answers
256 views

Stubbing RestClient response in RSpec

I have the following spec... describe "successful POST on /user/create" do it "should redirect to dashboard" do post '/user/create', { :name => "dave", :email => ...
2
votes
1answer
817 views

The request sent by the client was syntactically incorrect ().+Spring , RESTClient

I am working with Spring MVC using JSON objects. while I am tring to send JSON Object from RESTClient, I am getting HTTP Status 400 - The request sent by the client was syntactically incorrect ...
0
votes
0answers
59 views

Duplicate 'caption' on Facebook OpenGraph feed

The following 'error' started occurring within the past few month or so. Up until then the following Ruby code (using the fantastic rest-client gem): resp = ...
1
vote
1answer
136 views

Perl's REST Client error when trying to use Crontab

Script works well when run manually, but when I schdule it in cronjob it shows : malformed JSON string, neither array, object, number, string or atom, at character offset 0 (before ...
0
votes
0answers
43 views

How to manage resources in restful client?

I'm developing an iOS app with a RESTful backend api (Restler). I'm wondering what the best practice is regarding fetching and managing my resources within a session of the app, and I'll explain: For ...
0
votes
1answer
61 views

Download an image from a website into a CouchDB attachment through Rails without local storage?

I'm trying to scrape some websites and store the images as CouchDB attachments. In order to expedite the process I don't want to store the images locally at all. The relevant gems I'm already using ...
2
votes
1answer
102 views

rubygems rest-client error message

New Ruby user and I am completely addicted, LOVE it...but...I have hit a roadblock right out of the gate Have read plenty on the Ruby basics/theory/etc Working my way through "Bastards" Ruby Lessons ...
0
votes
0answers
109 views

What happens after limit of connections is reached in a Jetty HttpClient used in an Android app?

I have a client that constantly talks to a server via http using android-annotations's RestClient. Every time the app is open for a long time and lots of requests have been made, new http requests ...
1
vote
1answer
184 views

Issue passing custom header values using rest-client-builder plugin

I am using the latest grails (2.1.2) with rest-client-builder plugin version 1.0.3. I am trying to pass in a custom request header value (say SEC_USER) to the target server which pre-authenticates a ...
0
votes
1answer
235 views

How to capture rest-client requests from a Rails app using Charles Proxy?

Running a Rails application locally, I am able to configure Charles Proxy to show all the request/response details for the app accessible at lvh.me:3000. However I haven't been able to capture the ...
0
votes
0answers
132 views

Using Firefox RESTClient with Google OAuth2 fails

I am using RESTCLient in Firefox to test the google OAuth2, according to this page: https://developers.google.com/accounts/docs/OAuth2InstalledApp#choosingredirecturi However, I put all the required ...
0
votes
0answers
64 views

TeamLab API Request

I've used Ruby for a lot of work on local machines, but I'm running into a few issues as I branch into a web based environment. I don't know a great deal about web requests in restful APIs in ...
1
vote
0answers
114 views

Web Service Test Client with WSDL 2.0 + HTTP Support?

I am seeking an application or browser plugin with WSDL 2.0 service recognition and HTTP binding extension support, for the purpose of thorough web service testing. I'm aware that XMLSpy has a SOAP ...
0
votes
1answer
237 views

Why is my json deserialization failing?

I have the following two objects (which I do not control and can not change): [Serializable] [DataContract] public class AddressContactType : BaseModel { public AddressContactType(); ...
1
vote
2answers
136 views

Can a broadcast receiver class make a rest client call?

I have a broadcast receiver class for receiving the push notification which will be carrying an ID/key for a particular item. Then I need to make a call using rest service to retrieve that item and ...
1
vote
4answers
322 views

work around Ruby's broken URI.parse, follow redirects

I am using Ruby to scrape webpages that sometimes return redirects which I want to follow. There is many Ruby gems that do that, but there is a problem: Ruby's URI.parse explodes on some URIs that ...
0
votes
0answers
135 views

Drupal Advanced Rest Client Logout

Hi I'm able to login to my site using advanced rest client however for the life of me I'm unable to log out. I have the following for logging in. Any help on figuring out how to log out would be ...
2
votes
1answer
440 views

passing json data in elasticsearch get request using rest-client ruby gem

How do I execute the below query(given in doc) using rest client. curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '{ "query" : { "term" : { "user" : "kimchy" } } } ' I ...
1
vote
1answer
184 views

Creating a test report using Ruby unit test

I have a working testsuite which tests some RESTful API's. Up until now the stdout results have been fine: .......E..F.. However now I need something a bit more informative. The output should be: ...
0
votes
3answers
699 views

The easiest way to implement REST API client and JSON parser in Java?

I am struggling at transfering this code from JQuery to Java: var url = 'http://gdata.youtube.com/feeds/api/videos/'; $.getJSON( url + '?v=2&alt=json-in-script&callback=?', { 'q': q, ...

1 2 3 4