OpenURI is a Ruby module included in the standard library, which provides an easy-to-use wrapper for net/http, net/https and net/ftp.
-3
votes
1answer
26 views
Scraping Images from Pinterest on Heroku - is it possible?
I'm trying to read a specific pin page from pinterest and getting a 403 (Permission Denied) as a response. Here's the code:
url = 'http://pinterest.com/pin/498844096195830377'
open(url)
This ...
2
votes
0answers
28 views
Ruby Open-URI with Dynamic Website
I'm trying to use open-uri to get the html page for a website. However, the problem is that the website needs a couple of seconds to load for it to properly have the correct code. What I have right ...
1
vote
2answers
54 views
POST with ruby: best practise and how to?
I want to make a simple post request using ruby.
At first I tried it with the gem open-uri. But this answer to a so- question says that it doesn't work. So instead of this I want to use the ...
0
votes
2answers
61 views
Include both single and multiple text strings with Regex (in Ruby)?
so I have this problem where I am to list every country in a list in Excel by using Open-URI. Everything is working properly but I can't seem to figure how to get my RegExp-"string" to include ...
0
votes
1answer
135 views
How to read an xlsx or xls file from a URL
I'm trying to open a file from a URL using roo (1.11.0)
Foobazs-iMac:pipeline foobazlabs$ irb
irb(main):001:0> require 'roo'
require '=> true
irb(main):002:0> require 'open-uri'
=> true
...
1
vote
2answers
97 views
Iterating through multiple URLs to parse HTML with Nokogori
What I'm trying to do is scrape the names and prices of items from multiple vendors using Nokogiri. I'm passing the CSS selectors (to the find names and prices) to Nokogiri with method arguments.
...
0
votes
2answers
75 views
Multiple Rescue Statements in Rails Create Not Working
I am using open-uri and the seeds.db file. I'm trying to run the following code using "rake db:seed --trace":
CSV.foreach("vendor/users1.csv", { :col_sep => ",", :quote_char => "\"", :headers ...
0
votes
1answer
116 views
Infinite recursion with Paperclip remote image uploading
After successfully implementing the code from Trevor Turk's blogpost "Easy Upload via URL with Paperclip" several times already, in this latest iteration my app gives me the following error:
Started ...
0
votes
1answer
80 views
Post Audio to Soundcloud from S3 bucket?
I've successfully followed Soundcloud's API documentation but hit an error that's got me stuck.
When uploading / posting a file using their example I have no trouble when I hard code a file on my ...
0
votes
1answer
57 views
IOS invoke PDF Reader in application
Need to open a pdf in Adobe Pdf Reader Application via a button action in my application...!
- (void)btnAction {
// Handle Here
}
Please provide code snippets if any thanks :)
1
vote
1answer
171 views
Adjusting timeouts for Nokogiri connections
Why nokogiri waits for couple of secongs (3-5) when the server is busy and I'm requesting pages one by one, but when these request are in a loop, nokogiri does not wait and throws the timeout message.
...
0
votes
1answer
75 views
How can I block this code with Net::HTTP in ruby?
Here is a URL
http://192.168.1.2:1218/?name=verify_code_string_queue&opt=get&auth=verify_code_string_queue
It will return a string or a status code like SQS_GET_END
Now I need to break the ...
0
votes
1answer
108 views
Display HTTP headers using Open::URI?
with Open::URI, I can do the following:
require 'open-uri'
#check status
open('http://google.com').status
#get entire html
open('http://google.com').read
Is it possible to get the HTTP headers of a ...
1
vote
1answer
179 views
HTML is read before fully loaded using open-uri and nokogiri
I'm using open-uri and nokogiri with ruby to do some simple webcrawling.
There's one problem that sometimes html is read before it is fully loaded. In such cases, I cannot fetch any content other than ...
0
votes
2answers
78 views
How to mock Kernel.open or open-uri without calling Kernel explicitly?
How to mock this call in RSpec?
require 'open-uri'
class FileFoo < ActiveRecord::Base
def download image_url
open("tmp/#{file}", 'wb') do |file|
file << open(image_url).read
...
2
votes
2answers
402 views
Why is my JSON.parse failing? Ruby on Rails
I'm trying to load images from Flickr's API into a Ruby on Rails app, but I'm getting "Unexpected Token" on my JSON.parse() line.
I found another response here where the returned JSON had it's double ...
0
votes
1answer
81 views
URI Response Code
I would like to use Ruby's OpenURI to check whether the URL can be properly accessed. So I would like to check its response code (4xx or 5xx means error, etc.) Is it possible to find that?
0
votes
1answer
116 views
RSS parsing error on Heroku
I'm doing some simple RSS parsing and rendering - works perfectly fine on localhost and production at Heroku, but for some reason this particular RSS feed works only on localhost, but not when ...
3
votes
2answers
352 views
Ruby - How to get the name of a file with open-uri?
I want to download a music file by this way:
require 'open-uri'
source_url = "http://soundcloud.com/stereo-foo/cohete-amigo/download"
attachment_file = "test.wav"
open(attachment_file, "wb") do ...
2
votes
1answer
41 views
Setting a new DNS for open-uri in RoR
I'm having a problem to access a web site from RoR using open-uri.
In my local machine I have no problem but on the server the servers DNS doesn't resolve the uri.
Is there a way to set google DNSs ...
0
votes
2answers
102 views
regexp for finding href in <a> open-uri ruby
I need to find distance between two websites useing ruby open-uri. Using
def check(url)
site = open(url.base_url)
link = %r{^<([a])([^"]+)*([^>]+)*(?:>(.*)<\/\1>|\s+\/>)$}
...
3
votes
1answer
557 views
Ruby Open-URI library aborted in 404 HTTP error code
I use OpenURI library.
object = open("http://example.com")
If http://example.com server code response is equals to 200 my program acts as I expected.
But if http://example.com server response ...
1
vote
2answers
664 views
Can't convert StringIO into String (TypeError) in Ruby
When I use the code below, I get the following error message:
can't convert StringIO into String (TypeError)
array_of_lines = []
Zip::ZipInputStream::open(open("URL for zipped file", "rb")) do |io|
...
0
votes
1answer
70 views
Rails - Access file sitting in different port
I have two instances of web server. One is running on port 3000 and one is running on 9090. I want to access the JSON file sitting in the 9090 port.
In the rails model, I'm able to access the JSON ...
2
votes
3answers
119 views
Getting the contents of a 404 error page response ruby
I know some languages have a library that allows you to get the HTTP content for a 404 or 500 message.
Is there a library that allows that for ruby?
I've tried open-uri but it simply returns an ...
0
votes
2answers
124 views
button to save current page in rails 3.2
I need to have a button to save the current web site (just like clicking on "Save as"), I created a method in the controller which works great for any external site (like http://www.google.com) but ...
0
votes
2answers
212 views
No such file or directory: open-uri in rails controller
I am trying to use open method of open-uri gem in Rails.
When I try it in standalone Ruby application I just require it on top of the file and everything is ok.
But now I want it to use it controller ...
0
votes
0answers
210 views
Store Remote URL file into Paperclip
I created the following audio class.
class Audio < ActiveRecord::Base
has_attached_file :mp3,
:storage => :s3,
:s3_credentials => S3_CREDENTIALS,
:bucket => ...
0
votes
0answers
92 views
CarrierWave OpenURI::HTTPError: 407 Proxy Authentication Required
I'm using Rails 3.2 and CarrierWave 0.6.2 with Mongoid 2.4.12.
I would like to upload image and I take advantage to remote_url feature for uploading remote images.
I'm behind a proxy, and googling ...
0
votes
1answer
334 views
Ruby openuri test if uri is valid
I'm trying to test if a uri is valid (e.g. actually has content, not testing if it is well formed here) using ruby code, and I can open a uri using open(uri). But in my case, the uri is a link to a ...
0
votes
1answer
346 views
send Mail in ruby on rails with attachment of one image, which from google-Chart-API
Here after called the controller.rb, one file(chart.png) will save in my rails app folder, so how to take this and will attach with mail?
controller.rb
def mail
@imageURL = ...
2
votes
1answer
94 views
How can I QUICKLY get a string from one of the first couple lines of a long CSV at a remote URL?
I'm working on an assignment where I retrieve several stock prices from online, using Yahoo's stock price system. Unfortunately, the Yahoo API I'm required to use returns a .csv file that apparently ...
0
votes
1answer
357 views
Ruby on Rails open URI issue with broken file source
I am having a hell of a problem here.
I'm using ruby on rails:
ruby 1.8.7 (2011-12-10 patchlevel 356)
rails 2.3.14
I'm trying a simple open with open-uri on the following address:
...
12
votes
8answers
1k views
How should my scraping “stack” handle 404 errors?
I have a rake task that is responsible for doing batch processing on millions of URLs. Because this process takes so long I sometimes find that URLs I'm trying to process are no longer valid -- 404s, ...
2
votes
3answers
258 views
Nokogiri parsing different on server versus localhost
I'm getting some weird differences when running Nokogiri locally versus running it on my server. On my local machine the entire document seems to parse and be available but on the server I seem to get ...
0
votes
0answers
188 views
Net::HTTP gives incomplete results, Open-uri gives an error page
My Net::HTTP code looks something like this:
require 'net/http'
require 'nokogiri'
require 'open-uri'
source = Net::HTTP.get 'www.blahblahblah.com', '/'
puts source
It gives the source code that I ...
5
votes
4answers
300 views
Ruby open-uri open method loses file extension opening images
I'm using ruby 1.9.2 along with Rails 3.1.4 and Paperclip 2.4.5.
My issue is trying to save a paperclip attachment from a URI loses the file extension and saves the file without one resulting in ...
5
votes
2answers
924 views
`open_http': 403 Forbidden (OpenURI::HTTPError) for the string “Steve_Jobs” but not for any other string
I was going through the Ruby tutorials provided at http://ruby.bastardsbook.com/ and I encountered the following code:
require "open-uri"
remote_base_url = "http://en.wikipedia.org/wiki"
r1 = ...
0
votes
1answer
211 views
Running rake task with open-uri on Heroku results in Connection Refused error
I wrote a rake task that populates my database with data from a third-party API.
namespace :populate do
desc "Populate database with data from first page of TicketWeb API"
task :one_page => ...
2
votes
0answers
178 views
open uri error: can't convert hash into a string
I want to get an xml content from a url (let's say http://stackoverflow.com). For this I use open uri. When I do
begin
status = Timeout::timeout(5) {
getresult = open("http://stackoverflow.com", ...
0
votes
1answer
439 views
Ruby EOFError with open-uri and loop
I'm attempting to build a web crawler and ran into a bit of a snag. Basically what I'm doing is extracting the links from a web page and pushing each link to a queue. Whenever the Ruby interpreter ...
0
votes
1answer
116 views
How can I count the amount of outbound links a page has?
Learning scraping with Ruby. I'm trying to count the amount of outbound links a given page has, but I'm not sure how to tell Ruby I only want the outbound links counted.
My current code:
require ...
0
votes
2answers
334 views
How do I add an extension to a file when downloading it?
This magical Ruby script downloads a couple of XML files from a website, but the files don't have an extension. I'd like to add the prefix .xml to every file it downloads.
This is where I am right ...
3
votes
1answer
2k views
Ruby Proxy Authentication GET/POST with OpenURI or net/http
I'm using ruby 1.9.3 and trying to use open-uri to get a url and try posting using Net:HTTP
Im trying to use proxy authentication for both:
Trying to do a POST request with net/http:
require ...
2
votes
1answer
1k views
open-uri is not redirecing http to https
I am using ruby gems hpricot and open-uri to parse webpages and extract url from them.
But when I get a link like http:rapidshare.com, it is not redirecting to https
This is the following error I got:
...
2
votes
1answer
206 views
Is it possible to have open-uri maintain the extension?
In Ruby, when you open a remote file with open-uri, the file object ends up having a path with something like this: /tmp/20120329-2113-1-0762/open-uri20120329-1-7dit2c. I have some file processing ...
1
vote
2answers
174 views
Trying to parse all URLs from a file or in this case a remote URL
I'm trying to parse 3 arguments (this works) and request a file that has a bunch of txt and URLs in it. I'm trying to put each URL into an array I have try with some regexp with no luck and also with ...
0
votes
1answer
240 views
how to handle the 404 response when youtube_it gem doesn't find a video
I'm using the gem youtube_it in a Sinatra app. I would like to use it to check if a youtube video id is valid.
client.video_by(youtube_id)
is the query. I get this response when the id is invalid.
...
3
votes
1answer
291 views
Ruby open returning a string instead of a file?
When trying to open() remote images, some return as StringIO and others return as File...how do I force the File?
data = open("http://graph.facebook.com/61700024/picture?type=square")
=> ...
0
votes
1answer
110 views
How can I specify content-type accepted when requesting a HTTP resource with Ruby?
I have always used open-uri, and open("").read to get content through http. I am using this to access an API, and now I need to specify that what content type is accepted. They provide this example ...



