我已經得到了一個文件與uid分開的行,我試圖將它們包含在一個URI中。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?)」。
任何人都可以幫忙嗎?
感謝
啊,你是天才!如果我可以投票,我會給你數千!完整的字符串是文件中新行的'example \ n',有沒有辦法去掉它? –
感謝您的幫助! –