我在单独的行上有一个带有 uid 的文件,我正在尝试将它们包含在 URI 中。
File.open("File Path").readlines.each do |line|
puts line
uid = line
uri = URI("http://example:port/path/variable=#{uid}&fragment")
res = Net::HTTP.get_response(uri)
puts res.body
但我收到一条错误消息,提示“错误的 URI(不是 URI?)”。
有人可以帮忙吗?
谢谢