This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Michael
almost 9 years

I've tried everything, but nothing works!

I am being driven up the wall with this exercise. I have looked through every post regarding this lesson, have tried every example, but nothing, and I repeat NOTHING is working!

Here is my code:

require ‘rubygems’ require ‘oauth’ require ‘json’

baseurl = “https://api.twitter.com“ path = “/1.1/statuses/show.json” query = URI.encode_www_form(“id” => “266270116780576768”) address = URI(“#{baseurl}#{path}?#{query}”) request = Net::HTTP::Get.new address.request_uri

def print_tweet(tweet)

ADD CODE TO PRINT THE TWEET IN “

puts tweet[“user”][“name”] + “ - “ + tweet[“text”] end

http = Net::HTTP.new address.host, address.port http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_PEER

consumer_key ||= OAuth::Consumer.new “ENTER IN EXERCISE 1”, “” access_token ||= OAuth::Token.new “ENTER IN EXERCISE 1”, “”

request.oauth! http, consumer_key, access_token http.start response = http.request request

tweet = nil if response.code == ‘200’ then tweet = JSON.parse(response.body) print_tweet(tweet) end

If there is something wrong with this code, please tell me quick. I want to get through this lesson, and it’s driving me crazy how nothing works.

Answer 552281fb76b8feb25600060b