【Ruby】 HTTP通信を行う (Post編)

2013年8月12日月曜日

Ruby

t f B! P L
POSTでHTTP通信するプログラムです。

HTTP通信の実行プログラム
require "net/http"
require "uri"

uri = URI.parse("http://on-your-mark-i.blogspot.jp/index.html")
Net::HTTP.start(uri.host, uri.port){|http|
  body = "param1=1&param2=param"
  #送信
  response = http.post(uri.path, body)
}

Translate

このブログを検索

フォロワー

QooQ