?????????????json???????????????磺
?????????????
????POST /list.do HTTP/1.1
????Host: zoomi.com.cn
????Connection: close
????Accept: * /  *
????Cookie: Sessionid=ea277024eceb83494a0c490981f57d57
????Content-Length: 100
????{ “action”:”get”?? “target”:”broadcast_thread_list”?? ”type”:”all” }
???????????????
????HTTP/1.1 200 OK
????Content-Length: 100
????{ “action”:”get”?? “target”:”broadcast_thread_list”?? “result”:0??
????“type”:”all”??
????”content”:[1000?? 1001?? 1002……]         // ????id?б??????id?int????
????}
???????????
Action()
{
web_add_header("Host"?? "zoomi.com.cn");
web_add_header("Connection"??"close");
//web_add_header("Accept"?? "*/*");
//web_add_header("Cookie"?? "Sessionid=ea277024eceb83494a0c490981f57d57");   //cookie????????????ü?
//web_add_header("Content-Length"?? "100");  //??????????????????????????
web_add_header("x-uid"?? "20");
web_custom_request("broadcast"??   //???д??????
"Method=POST"??
//  "Resource=1"??                         //??????????????????????????????????????????
"URL=http://10.60.30.27:8080/Childrearing/list.do"??        //??????
//  "URL=http://10.60.30.28:80/list.do"??
"RecContentType=application/json"??    //?????????Content-Type????????JSON
"EncType=application/json"??               //??????????Content-Type?????????JSON
//  "Mode=HTML"??
"Body={ "action":"get"?? "target":"broadcast_thread_list"?? "type":"all" }"??
//  "TargetFrame="??
//  RAW_BODY_START??                      //????BODY?????????
//  "{ "action":"get"?? "target":"broadcast_thread_list"?? "type":"all" }"??
//  78??                                    //???????BODY????????
//  RAW_BODY_END??                  //????BODY??????????
LAST);
//?????£??????json?????????Body??????????RAW_BODY_START???????????????????????Body??????????????????÷?б????壬??VUgen??????????
return 0;
}