我正在尝试将由不同参数组成的主体转换为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
但也不起作用。
对上述问题的任何帮助将不胜感激。