Submit a POST request in JSON string format
Action ()
{
Web_reg_save_param ("RetCode",
"Lb=retcode\": \ "",
"Rb=\" ",
"Notfound=warning",
last);
Lr_start_transaction ("test");
Web_add_header ("Content-type", "Application/json");
Web_custom_request ("Test",
"Url=http://127.0.0.1/test",
"Method=post",
"Resource=0",
"Referer=",
"Mode=http",
"Enctype=application/json; Charset=utf-8 ",
"Reccontenttype=application/json",
"Body={\" channelno\ ": \" {channelno}\ ", \" Phoneno \ ": 12345678900,\" createdtime\ ": \" {createdtime}\ "}",
last);
if (!strcmp (lr_eval_string ("{RetCode}"), "000000"))
{
Lr_output_message ("successfull, Retcode is:%s", lr_eval_string ("{retcode}"));
Lr_end_transaction ("Test", Lr_pass);
}
else{
Lr_error_message ("Failed, Retcode is:%s", lr_eval_string ("{retcode}"));
Lr_end_transaction ("Test", lr_fail);
}
return 0;
}
When writing a JSON string, be careful to ensure that the body content is correct, the string must be between \ "\", the parameter name and the parameter value is:, the parameters and parameters separated by commas.
Submit a POST request in JSON string format