Tagged Questions
The open-uri tag has no wiki summary.
7
votes
6answers
8k views
Ruby's open-uri and cookies
I would like to store the cookies from one open-uri call and pass them to the next one. I can't seem to find the right docs for doing this. I'd appreciate it if you could tell me the right way to do ...
6
votes
2answers
2k views
Convert latin1 string to utf8?
how can I convert a string, that contains latin1 characters to utf8?
The string is a document, that is opened by open-uri and that contains these special characters.
Best regards
5
votes
1answer
1k views
Opening a WIKI URL with a comma using `open-uri`
I am running in to OpenURI::HTTPError: 403 Forbidden error
when I try to open a URL with a comma (OR other special characters like .).
I am able to open the same url in a browser.
require 'open-uri'
...
4
votes
1answer
658 views
Fast way to get remote image dimensions
I'm using the imagesize gem to check the sizes of remote images and then only push images that are big enough into an array.
require 'open-uri'
require 'image_size'
data = Nokogiri::HTML(open(url))
...
4
votes
3answers
4k views
How do I make a POST request with open-uri?
Is it possible to make a POST request from Ruby with open-uri?
3
votes
1answer
497 views
resque-web fails to start with a 500 Server Error
I'm following the configuration guidelines for installing resque. I'm met with a (OpenURI::HTTPError). I'm using RVM 1.9.2-p180, rails 3.0.6, and POW.'resque-web' fails to start with a 500 Server ...
3
votes
1answer
2k views
RSpec and Open-URI how do I mock raise a SocketError/TimeoutError
I want to be able to spec out that when Open-Uri open() calls either timeout or raise an exception such as SocketError I am handling things as expected, however I'm having trouble with this.
Here is ...
2
votes
0answers
35 views
Setting outgoing IP address in open-uri with RoR
I'm new to open-uri and trying to set an outgoing IP address using open-uri in ruby on rails. I used this post as a reference to get started. I'm porting an app from PHP where I could use ...
2
votes
1answer
132 views
Trouble opening utf-8 URI's with Ruby's 'open-uri'
I'm trying to get Danish location addresses from google maps web services API with ruby and open-uri.
Trying to get Ærø, Denmark: ...
2
votes
2answers
169 views
404 error with open-uri in a rake task… what's causing it?
I have a rake task that fetches JSON data from an API, parses it, and saves it to the database:
task :embedly => :environment do
require 'json'
require 'uri'
require 'open-uri'
...
2
votes
1answer
97 views
Ruby: abort OpenURI based on content length
Ruby's OpenURI provides a content_length_proc option which allows determining* content length before the actual transfer is started:
open(url, :content_length_proc => lambda { |content_length|
...
2
votes
1answer
182 views
How can you tell if an FTP file exists using ruby?
I'm trying to figure out the best and fastest way to tell if a file exists on an ftp server.
This is what I came up with...
def remote_exists?(idx)
#@file.rewind if @file.eof?
ftp = ...
2
votes
2answers
634 views
Is there a workaround to open URLs containing underscores in Ruby?
I'm using open-uri to open URLs.
resp = open("http://sub_domain.domain.com")
If it contains underscore I get an error:
URI::InvalidURIError: the scheme http does not accept registry part: ...
2
votes
1answer
950 views
Using Open-URI to fetch XML and the best practice in case of problems with a remote url not returning/timing out?
Current code works as long as there is no remote error:
def get_name_from_remote_url
cstr = "http://someurl.com"
getresult = open(cstr, "UserAgent" => "Ruby-OpenURI").read
doc = ...
2
votes
2answers
1k views
open("http://www.google.com') failed but wget works
open failed:
irb(main):001:0> require 'open-uri'
=> true
irb(main):002:0> open("http://www.google.com")
RuntimeError: Non-HTTP proxy URI:
from /usr/lib/ruby/1.8/open-uri.rb:203:in ...
2
votes
2answers
1k views
Using open-uri how can I get the contents of a redirecting page?
I ultimately want to get data from this page:
http://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?trackingNumber=0656887000494793
But that page forwards to:
...
2
votes
6answers
4k views
Nokogiri, open-uri, and Unicode Characters
I'm using Nokogiri and open-uri to grab the contents of the title tag on a webpage, but am having trouble with accented characters. What's the best way to deal with these? Here's what I'm doing:
...
1
vote
1answer
116 views
Prevent timeout when opening large files from URL
I am writing a Ruby 1.8.7 script which has to request really large XML files(1 - 5MB) from server which is quite slow(1min30sec for 1MB). The requested file is written to disk.
I set the timeout in ...
1
vote
3answers
64 views
How to Process Items in an Array in Parallel using Ruby (and open-uri)
I am wondering how i can go about opening multiple concurrent connections using open-uri? i THINK I need to use threading or fibers some how but i'm not sure.
Example code:
def get_doc(url)
...
1
vote
1answer
154 views
how to specify “http request header” in open-uri
I am trying to call a URL using Ruby open-uri library. However it needs me to pass certain values inside its HTTP REQUEST Header.
Any idea how to do this in open-uri?
Thanks,
-iwan
1
vote
2answers
226 views
Why doesn't Nokogiri load the full page?
I'm using Nokogiri to open Wikipedia pages about various countries, and then extracting the names of these countries in other languages from the interwiki links (links to foreign-language wikipedias). ...
1
vote
2answers
157 views
Ruby: How to screen-scrape the result of an Ajax request
I have written a ruby script to screen scrape something using the 'open-uri' and 'hpricot' gems - everything works great so far.
But now I have to screen scrape something which is returned after a ...
1
vote
1answer
107 views
Elegantly using Kernel#open for https via open-uri
After requiring open-uri, one can conveniently download and use files from the web via Kernel#open. However, trying to do this with https results in a root cert error, because ruby doesn't have all ...
1
vote
1answer
294 views
open-uri returning ASCII-8BIT from webpage encoded in iso-8859
I am using open-uri to read a webpage which claims to be encoded in iso-8859-1. When I read the contents of the page, open-uri returns a string encoded in ASCII-8BIT.
...
1
vote
3answers
2k views
In Ruby/rails, how can I encode/escape special characters in URLs?
How do I encode (or 'escape') the url before I use open-uri to open(url)?
We're using open-uri to open a remote url and return the xml:
getresult = open(url).read
The problem is the url contains ...
1
vote
1answer
191 views
ruby open-uri what is returned by .open?
I cannot tell from the rdoc for open-uri what is returned when I do
result = open(url)
the url returns xml, but how do I see/parse the xml?
1
vote
1answer
901 views
Why does using open-uri to download a file result in a partial file?
I'm trying to use open-URI to download a file from S3, and then save it locally so I can send the file as an attachment with ActionMailer.
Something strange is going on. The images being downloaded ...
1
vote
2answers
573 views
Encoding error in content get from open-uri in ruby on rails
Im some cases when I use open to get a web page in ruby the content of the page has an encoding error. Exemple :
open("http://www.google.com.br").read
Chars like ç and ã are replaced by "?"
How can ...
1
vote
1answer
575 views
Ruby HTML scraper written in Hpricot having trouble with escaped HTML
I am trying to scrape this page: http://www.udel.edu/dining/menus/russell.html. I have written a scraper in Ruby using the Hpricot library.
problem: HTML page is escaped and I need to display it ...
1
vote
1answer
597 views
Recieving a 404 HTTPError on a working page in Ruby Script
This is my first time asking a question, please be gentle!
I have a Rails application that handles content for a whole bunch of domains (over 100 so far). Each domain either points to where my app ...
1
vote
4answers
2k views
open-uri + hpricot & nokogiri don't parse html correctly
I'm trying to parse a webpage using open-uri + hpricot but it seems to be a problem in the parsing proccess as the gems don't bring me the things I want.
Specifically I want to get this div (whose ...
1
vote
1answer
854 views
Ruby open-uri file locking
I had an issue where downloading to a local file was locking it until I killed the ruby script. On a hunch, I changed the form of the call and now it doesn't lock the file.
Can someone tell me why ...
1
vote
2answers
2k views
XML => HTML with Hpricot and Rails
I've never worked with web services and rails, and obviously this is something I need to learn.
I've chosen to use hpricot because it looks great.
Anyway, _why's been nice enough to provide the ...
0
votes
0answers
63 views
Ruby open uri download via proxy
I don't know how to download data from URL using open-uri and active proxy.
I used this code:
proxy = Net::HTTP::Proxy("??????????????????????")
proxy.start('http://www.example.com') { ...
0
votes
1answer
70 views
503 error when using ruby's open-uri to access a specific site
I had been using the code below to crawl a website, but I think I might have crawled too much and gotten myself banned from the site entirely. As in, I can still access the site on my browser, but any ...
0
votes
1answer
43 views
How to view GET request headers generated by open-uri
I'm using open-uri and I know I can get the response headers with the meta method as below, but I'm wondering how I can view the GET headers generated. Or would I have to use a different library for ...
0
votes
2answers
124 views
Extract some JSON using Nokogiri
require 'open-uri'
require 'json'
require 'nokogiri'
doc = Nokogiri::HTML(open("http://www.highcharts.com/demo/"))
puts doc
But I want to be able to extract the json from this webpage, using ...
0
votes
1answer
65 views
Raising OpenURI::HTTPError caused wrong number of arguments error
I am testing how a method handles a 302 HTTPError exception. I tried to stub the one method call to raise one programmatically, however it keep complaining that wrong number of arguments error (0 for ...
0
votes
1answer
147 views
Get image name from Facebook image url
I want to use Facebook profile image as the profile image for my site when the user logins via Facebook. I am using omniauth gem for Facebook login. After login, omniauth gives Facebook response in ...
0
votes
1answer
78 views
Parse a web page and extract some json arrays
So I have some basic code below, which fetches the json from http://www.highcharts.com/demo/. But I want to be able to extract a hash, more specifically this:
series: [{
name: ...
0
votes
2answers
48 views
Use Tempfile twice?
I'm having an issue with a simple program over what I believe has to do with Tempfiles. I am using 'open-uri' and 'nokogiri' and am trying to do a regex search on a document as well as an xpath search ...
0
votes
1answer
138 views
Ruby open-uri RuntimeError - redirection forbidden
Little question about Ruby error handling. I have some code that roughly resembles the following:
urls.each do |url|
begin
threads << Thread.new(url) do |url|
page = open(url)
# some ...
0
votes
1answer
53 views
How to open a file name that looks like a URL after require open-uri?
How to open a file name that seems like a URL after require 'open-uri'
require 'open-uri'
open("http://google.com")
in folder
- http://google.com
0
votes
1answer
80 views
EOFError when open https
I've been trying to use facebook graph api, though ruby raise EOFError when open api url (https://graph.facebook.com/.....)
I'm using Ruby 1.8.6 and Rails 2.2.2.
The code is as follows:
require 'uri'
...
0
votes
2answers
30 views
how to find the file path from the open command
I need to get the path of the file in fo variable so that i can pass the path to the unzip_file function. how do i get the path here?
url = 'http://www.dtniq.com/product/mktsymbols_v2.zip'
open(url, ...
0
votes
1answer
354 views
how to test open-uri url exist before processing any data
I'm trying to process content from a list of links using "open-uri" in ruby (1.8.6), but the bad thing happens when I'm getting an error when one link is broken or requires authentication:
...
0
votes
1answer
132 views
Rails open-uri breaking on path
I'm trying to get a url using open-uri.
my code is outrageously simple
url = open("http://localhost:3000/descriptions")
return render :text => url.to_json
When I run this code, I get a ...
0
votes
1answer
151 views
open-uri open command run on a domain, against the same domain
Ive built a form on a webpage that allows a user to enter a URL and some information about the URL's CSS is returned. The tool works fine, apart from one issue i have noticed.
When i enter the URL ...
0
votes
2answers
209 views
How can I fake my IP address [closed]
I have a sprider collect data from some web site.but it offen be denied.
I think it basis of my IP address.
how can I fake my IP address. or have a another way to avoid be denied.
thx.
0
votes
2answers
178 views
Retrieving dimensions of image without download whole image
I'm using open-uri to download remote images and then the imagesize gem to get the dimensions. The problem is this gets painfully slow when more than a handful of images needs to be processed.
How ...