首页 > 解决方案 > Ruby - 对 Post 请求的正文进行编码

问题描述

我正在尝试将由不同参数组成的主体转换为hash编码格式,如下所示:

params = {
  "senderid" => "abc",
  "username" => "xyz",
  "password" => "1234",
  "Response" => "Y",
  "mtype" => "TXT",
  "dltentityid" => "15058",
  "tmid" => "11101",
  "subdatatype" => "M",
  "dlttempid" => "345690",
  "dlttagid" => "",
  "msgdata" => {
    "data" => [
      {
      "mobile" => "9000099999",
      "message" => "Thank for showing your preference for the loan requirement for your dream home at Happinest Kalyan. We have a host financial partners who are offering home loans at competitive rates. Login access the details of financial partners on abc."
      }
    ]
  }
}

  url                     = URI('http://www.smsjust.com/sms/user/urlsms_json.php')
  http                    = Net::HTTP.new(url.host, url.port)
  request                 = Net::HTTP::Post.new(url)
  request["Content-Type"] = 'application/x-www-form-urlencoded'
  request.body            = URI.encode_www_form(params)
  response                = http.request(request)

接收方接收request.body如下。这里 params 的 URI 编码将 params 编码如下,这不起作用并输出为wrong json format

"senderid=abc&username=xyz&password=%qwe3&Response=Y&mtype=TXT&dltentityid=12658&tmid=150000010001&subdatatype=M&dlttempid=150092&dlttagid=&msgdata=%7B%22data%22%3D%3E%5B%7B%22mobile%22%3D%3E%229998973369%22%2C+%22message%22%3D%3E%22Thank+for+showing+your+preference+for+the+loan+requirement+for+your+dream+home+at+Happinest+Kalyan.+We+have+a+host+financial+partners+who+are+offering+home+loans+at+competitive+rates.+Login+access+the+details+of+financial+partners+on+%24project_name.%22%7D%5D%7D"

postman 中的同一个 post 请求将 params 的 URI 编码转换为如下有效的 - 以下是它应该发送给接收者的预期格式:

"username=abc&password=%qweeCS3&senderid=qas&mtype=TXT&msgdata=%7B%22data%22%3A%5B%7B%22mobile%22%3A%229812593882%22%2C%22message%22%3A%22Thank%20for%20showing%20your%20preference%20for%20the%20loan%20requirement%20for%20your%20dream%20home%20at%20Happinest%20Kalyan.%20We%20have%20a%20host%20financial%20partners%20who%20are%20offering%20home%20loans%20at%20competitive%20rates.%20Login%20access%20the%20details%20of%20financial%20partners%20on%20%24project_name.%22%7D%2C%7B%22mobile%22%3A%228849593882%22%2C%22message%22%3A%22Sixth%20message%22%7D%5D%7D&subdatatype=M&Response=Y&dlttempid=15092&dltentityid=1502658&tmid=15010001&dlttagid="  

已经尝试过:我尝试过使用CGI.escape但也不起作用。

对上述问题的任何帮助将不胜感激。

标签: ruby-on-railsrubyencodingpostmanx-www-form-urlencoded

解决方案


我找到了如下所示的解决方案:

params = {
  "senderid" => "abc",
  "username" => "xyz",
  "password" => "1234",
  "Response" => "Y",
  "mtype" => "TXT",
  "dltentityid" => "15058",
  "tmid" => "11101",
  "subdatatype" => "M",
  "dlttempid" => "345690",
  "dlttagid" => ""  
}

msgdata = {
  "data" => [
    {
    "mobile" => "9000099999",
    "message" => "Thank for showing your preference for the loan requirement for your dream home at Happinest Kalyan. We have a host financial partners who are offering home loans at competitive rates. Login access the details of financial partners on abc."
    }
  ]
}.to_json

  url = URI('http://www.smsjust.com/sms/user/urlsms_json.php')
  http = Net::HTTP.new(url.host, url.port);
  request = Net::HTTP::Post.new(url)
  request["Content-Type"] = "application/x-www-form-urlencoded"
  request_body = (params.each { |k, v| params[k] = CGI.escape(v.to_s) }).to_query
  request.body = "#{request_body}&msgdata=#{CGI.escape(msgdata.to_s)}"

这里的问题是将所有参数转换为字段CGI.escape而不是 字段。URI.encode_www_formmsgdata

作为msgdata一个字符串,它应该作为json字符串在正文中发送 - 因此将其json单独转换为 -> 对其应用CGI.escape,然后将其最后附加到request_body.

希望这会帮助任何人解决这个问题!


推荐阅读