export SSL_CERT_FILE instead. and also, in your example you have to set port 443 and force ssl..
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
uri = URI.parse(“https://www.google.com/”)
http = Net::HTTP.new(uri.host, 443)
http.use_ssl = true
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
'Windows Prog' 카테고리의 다른 글
[MFC] 두개의 테이블을 데이터 베이스에 연결하기 (0) | 2011.12.28 |
---|---|
으아 =_= (0) | 2011.12.28 |
[펌] 프린터 관련 함수 (0) | 2011.11.10 |
그동안 건강에 너무도 소홀했다 (0) | 2011.11.05 |
[Ruby] editor 다운로드 (0) | 2011.10.29 |