Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

Open https webpage in ruby.

i am try to open https link in ruby program. http links are opening by using open(url) but when i am trying to use the same command for https urls it gives me error. following is my code. I want open first url but if there is a problem in it then the second url should be opened.

require 'rubygems'
require 'sinatra'
require 'json'
require 'open-uri'
#require 'net/http'
require 'net/https'
require 'rest-client'
require 'nokogiri'



set :environment, :production



get '/' do

  uri = ("https://url")


  url2 = "http://slashdot.org/"


    begin
       redirect (uri)
    rescue
    doc = open(url2)

    end