我会利用WEBrick
. WEBrick::HTTPRequest
有一个可用的解析器,你需要做的就是将一个IO
对象传递给它的parse
方法,你自己就有一个可以操作的对象。
此示例在字符串中声明了一个带有 JSON 主体的 POST 请求,并用于StringIO
使其可作为IO
对象访问。
require 'webrick'
require 'stringio'
Request = <<-HTTP
POST /url/path HTTP/1.1
Host: my.hostname.com
Content-Type: application/json
Content-Length: 62
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
HTTP
req = WEBrick::HTTPRequest.new(WEBrick::Config::HTTP)
req.parse(StringIO.new(Request))
puts req.path
req.each { |head| puts "#{head}: #{req[head]}" }
puts req.body
输出
/url/path
host: my.hostname.com
content-type: application/json
content-length: 62
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}