Skip to content

Instantly share code, notes, and snippets.

@2GMon
Created December 15, 2011 13:38
Show Gist options
  • Save 2GMon/1481113 to your computer and use it in GitHub Desktop.
Save 2GMon/1481113 to your computer and use it in GitHub Desktop.
# instapaper経由でwebのtextのみを取得
# ログインしてないとダメ?(未確認)
require 'net/http'
require 'uri'
require 'cgi'
uri = URI("http://www.instapaper.com/text?u=#{CGI.escape(ARGV[0])}")
http = Net::HTTP.new(uri.host, uri.port)
res = http.get(uri.request_uri)
puts res.body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment