Curb provides Ruby-language bindings for the libcurl, a fully-featured client-side URL transfer library.
0
votes
0answers
13 views
Rails 3.2 using curb gem. error - uninitialized constant LoginController::Curl
I've installed curb gem
1) gem install curb
2) included in gemfile gem 'curb'
3) in boot.rb
require 'rubygems'
require 'curb'
But i get an error when i try to use Curl
http = ...
0
votes
0answers
54 views
Ruby gem curb wont install on windows 7, even if I use libcurl
I'm trying to install the curb gem on windows 7 with libcurl but it returns errors. This is for the eventual purpose of running a ruby app on a vm with vagrant, explained here github catarse install. ...
0
votes
1answer
30 views
How can i specify SSL version in curb
I am interacting with an API that requires SSL3.
From the command line I form the request like:
curl -ssl3 -H 'Authorization: Bearer XXXX' https://capi-eval.signnow.com/api/user/documentsv2
With ...
1
vote
1answer
45 views
Doing a Post with Ruby Curb with basic authentication
I am trying to automate the following curl command line into Ruby Curb:
curl -H "Content-Type:application/json" -X POST -d \
'{"approvalType": "auto",
"displayName": "Free API Product",
"name": ...
1
vote
1answer
45 views
Make a HTTP header request with Curb
With curl I can perform a HTTP header request like so:
curl -I 'http://www.google.com'
How can I perform this procedure with Curb? I don't want to retrieve the body as this would take too much ...
0
votes
1answer
39 views
rails extract data from simple json response
I need to extract some data from a JSON response i'm serving up from curb.
Previously I wasn't calling symbolize_keys, but i thought that would make my attempt work.
The controller action:
http = ...
2
votes
2answers
91 views
Rails - loop curls request eating memory
I use the gem Curb (tried too with httparty) to performing a lot of http request and this working good. But in one of my (rake) task (where I do 20k+ requests) I have a memory problem (Rails "eats" ...
0
votes
0answers
44 views
Rails - Curb gem - Failed to allocate memory
During a running task this exception is raised by the Curb gem (https://github.com/taf2/curb).
failed to allocate memory
It's strange because before the Exception the gem works properly (with ...
1
vote
1answer
64 views
getting the status code of a HTTP redirected page
I'm using curb to test some URLs in Ruby:
require 'curb'
def test_url()
c = Curl::Easy.new("http://www.wikipedia.org/wiki/URL_redirection") do |curl|
curl.follow_location= true
curl.head = ...
1
vote
1answer
174 views
Using ruby curb gem to access paypal api
Follow the instruction in Paypal Developer 'make your first call':
curl https://api.sandbox.paypal.com/v1/oauth2/token \
-H "Accept: application/json" \
-H "Accept-Language: en_US" \
-u ...
2
votes
0answers
231 views
Installing curb (0.7.18) on ubuntu 12.10 with ruby 1.9.3p194 [closed]
I tried installing libcurl4-openssl-dev but didn't work. Does anyone had this kind of issue?
Here is the output of the bundle install.
Installing curb (0.7.18) with native extensions
...
0
votes
1answer
63 views
How to send DELETE request with body using ruby gem?
I am communicating with API that requires DELETE request with JSON body. This works on console:
curl -XDELETE http://api.com/endpoint_path/rest_resource
-d ...
0
votes
0answers
42 views
Curb giving me weird error
I installed curb on ruby with this line of code and it said that it installed ok.
C:\>gem install curb --platform=ruby -- --with-curl-lib=C:\curl\bin --with-curl-include=D:\curl\include
Then I ...
2
votes
1answer
108 views
How do I install curl with ares enabled
I have curl installed on the latest ubuntu via apt-get and that works fine, however I've been reading about the blocking nature of the DNS lookups and discovered that it's slowing down my app.
I've ...
1
vote
1answer
365 views
Curb get response headers
I intend to make a call like the following from a Ruby on Rails application:
c = Curl::Easy.http_post("https://example.com", json_string_goes_here) do |curl|
curl.headers['Accept'] = ...
4
votes
2answers
117 views
Retrieving full request string using Ruby curl
I intend to send a request like the following:
c = Curl::Easy.http_post("https://example.com", json_string
) do |curl|
curl.headers['Accept'] = 'application/json'
...
0
votes
2answers
39 views
Specifying IP for Some Domainname
I am calling a number of apis of a web service hosted on a number of servers. Requests get routed to these servers at random through a load balancer.
All these servers reside on my local network and ...
1
vote
2answers
287 views
Rails - Curb SSLCA error? - Curl::Err::SSLCACertificateError
When I update my Rails gems I find this errors (only in production, in development environment working good):
Curl::Err::SSLCACertificateError
Seems that is an SSL Certificate Authority Error, but ...
0
votes
2answers
315 views
Setting up Curb in windows
I'm trying to use feedzirra with Rails 3 On Windows 7, but have been having real issues getting Curl and Curb installed. I found this question Install Ruby Curb gem in windows XP which enabled me to ...
1
vote
5answers
323 views
Trying to make curl requests in ruby
is there a ruby curl library that will allow me to duplicate this request:
curl -d '<hello xmlns="http://checkout.google.com/schema/2"/>' ...
1
vote
1answer
300 views
Bundle Install Fails on Curb Gem - Mac OS X 10.8.2
When I try to run bundle installthis is the issue I am running into:
Installing curb (0.8.1) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
...
1
vote
1answer
98 views
rails - curb: encoding issue sending request & token with “+”
I have a problem sending request to an external server, when the token has a "+" the other server don't recognize the request. I think it's a problem of encoding (sorry I'm newbie to rails) but I ...
0
votes
1answer
243 views
Curl using ruby
I'm trying to use Curl with SPNEGO negotiate kind of authentication through ruby.
I tried several libraries, but seems like httpi has a way to do it through it's curb adapter like this link:
...
0
votes
1answer
122 views
Performing an HTTP PATCH using Ruby curb
I'm trying to do an HTTP PATCH using curb. Looking through the code, there doesn't seem to be a method exposed for this. Is there any way to use curb to do a PATCH? If not, what other libraries or ...
1
vote
1answer
220 views
How do i add binary-data to curb POST
I'm trying to do the following POST to Parse Cloud using the Curb gem
curl -X POST \
-H "X-Parse-Application-Id: PARSE_APP_ID" \
-H "X-Parse-REST-API-Key: PARSE_API_KEY" \
-H "Content-Type: ...
0
votes
1answer
97 views
How to specify network interface with Ruby's Faraday?
I'm using Faraday which wraps various adapters, including Net::HTTP, Excon, Typhoeus, Patron, and EventMachine. I would like to specify the network interface (e.g. en0 or en1), but I'm not sure how or ...
0
votes
1answer
99 views
Using Curb in Rails for Streaming
Is it feasible to use curb in rails for managing and processing a streaming API? I have used it before for a one-time request, but haven't seen any examples of using it in a streaming situation. If it ...
0
votes
2answers
249 views
Can I use curl or curb to POST to a form that uses rails' Cross-site request forgery protection?
I have a simple rails webpage where a user enters in a few textfields and uploads a picture. Rails then stores the picture and updates the databases on the server. It works fine.
However, I also ...
0
votes
0answers
90 views
Why doesn't curb-fu load when I use it in a cronjob?
I have a little ruby cronjob which starts with:
#!/usr/bin/ruby
#Encoding: UTF-8
require 'pp'
require 'curb-fu'
When I run it in the command line it works all fine. But as a cronjob I get this ...
6
votes
2answers
2k views
Can't find libcurl or curl/curl.h (RuntimeError)
I am trying to install curb 0.8.0 on a Windows computer but I can not seem to get anywhere. I have been trying every website 3 pages deep on my Google search. Please, anyone have an idea of how I can ...
0
votes
1answer
681 views
Ruby Curb (Curl) issue with setting parameters and cookies
I've got a series of rather large arrays of entries that I want to post into a remote Jira instance's custom fields, so I'm trying to do it with Curb under Ruby (as their API doesn't allow it, and ...
0
votes
1answer
246 views
Ruby/curl link expander method is downloading the full target url
I made a handy little link expander using curl within my ruby (Sintra) app.
def curbexpand(link)
result = Curl::Easy.new(link)
begin
result.headers["User-Agent"] = "..."
...
0
votes
2answers
326 views
I can't install Ruby Gem 'curb' on Mac OS Lion
I'm trying to bundle install an application and it keeps getting stuck at the curb gem. Here is the Gemfile:
source :rubygems
gem 'sinatra', '~>1.0'
gem 'yajl-ruby', '~>0.7.8'
gem ...
0
votes
1answer
168 views
Collect xml response by third party web service
I have used this command to send xml files to a web service named SRA-ENA.
submission_field = Curl::PostField.content(File.read("xml/#{@experiment.alias}.submission.xml"), 'SUBMISSION')
...
0
votes
1answer
272 views
Parsing Xml response from third party web service
I have installed cURB library for my rails 2 application and I am able to send multiple xml files to a single url of a web service as a post request. In addition to that I receive an receipt from the ...
1
vote
1answer
406 views
SSLCaertBadFile error heroku curb
I have a rake task that pulls and parses JSON data over an SSL connection from an external API.
I use a gem that wraps this external API and have no problems running locally, but the task fails when ...
0
votes
2answers
923 views
curb post over ssl
how can you do a post over https using curb ruby gem?
This is how I do it over http to post a file to a server:
c = Curl::Easy.new("http://www.myserver.com/upload_messages")
c.multipart_form_post = ...
1
vote
0answers
258 views
curb gem on Mac Lion
I'm trying to install the curb gem in my Mac OSX Lion. I tried all solutions cited here already, like Having Issues with Curb gem on Mac Snow Leopard
my environment ruby 1.9.2 (rvm), mac OSX Lion, ...
0
votes
1answer
139 views
Curl::Multi.download is broken?
When I do
ruby-1.9.2-p180 :002 > Curl::Multi.download(["http://www.bbc.com"])
=> nil
The downloaded file is of zero size
ls -l
-rw-r--r-- 1 staff 0 Jan 5 19:51 www.bbc.com
But the ...
0
votes
1answer
225 views
Handling connection refused from curb(-fu) call
How can I deal with
Curl::Easy.http_get("dev-server.example.com")
Curl::Err::ConnectionFailedError: Curl::Err::ConnectionFailedError
from a curb or curb-fu call? Our dev servers are up and down so ...
2
votes
2answers
660 views
How do I make bundler recognize installed curb gem?
I've successfully installed the curb gem on Mac OS X using sudo env ARCHFLAGS="-arch x86_64" gem install curb but when trying to run bundle install I still get this error:
Installing curb (0.7.16) ...
0
votes
1answer
236 views
How to set limit-rate option in Curb gem?
I'd like to set --limit-rate option for downloads done by Curb gem (ruby interface to curl).
In curl:
curl --limit-rate 10K http://server/large_file.rar
For downloads by Curb I have this code ...
2
votes
0answers
1k views
curb gem installation: bundle install fails, but normal gem install works [closed]
solved: the openvz container did not have enough memory assigned to it.
I could need some help:
I want to install the curb gem through bundler.
My config (please request more details if needed):
...
16
votes
4answers
4k views
Can't Install Curb - Having problems with native extensions
I'm trying to install the curb gem on my Debian machine but I'm having a hard time building the gem with native extensions. I'm using RVM.
Just a list of things I'm using:
debian
bundler
rvm
...
0
votes
1answer
374 views
curb + mechanize = segfault?
I get the following output from irb (v 0.9.5) when I require mechanize and then curb:
$ irb
>> require 'mechanize'
=> true
>> require 'curb'
=> true
>>
No problems there. ...
1
vote
1answer
641 views
Zipfile download through CURL to an actual Zip-file in your file structure
I am trying to build a file downloader with the RubyGem Curb. (Look at This Question.)
I am trying to download a zip file and then with the class File I am trying to actually make the file so that I ...
0
votes
2answers
2k views
Using gem Curb (curl) to download file
I have understood that I could use the RubyGem Curb to fulfill my needs of curl'ing down a file to my computer. But I cannot figure out how to actually "touch" the file. This is what I have got so far
...
0
votes
1answer
585 views
Ruby curb on Windows: I installed 0.7.12, bundler complains not being able to install 0.7.10
I got this error when calling "bundle update":
Installing curb (0.7.10) with native
extensions
C:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:529:in
`rescue in block in ...
0
votes
1answer
557 views
curl.perform throws invalid easy handle error under multi-threading env
I use curl of ruby gem curb to fetch multi urls under multi-threading env, but it throws "Invalid easy handle" exception, but if it runs one by one in single-threading env everything is ok.
module ...
0
votes
1answer
351 views
Is is possible to force curb not use Keep Alive?
Using curb to communicate with some HTTP server and
looks like that HTTP server does not implements Keep-Alive properly.
This is why I'm searching way to force curb not use this feature.
Sure, I can ...
