POST请求调HTTP接口

  • MyThread.java
import java.io.*;
// import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

public class MyThread implements Runnable {

    // private static final String TEST_URL = "https://p6.d.meituan.net";
    private static final String TEST_URL = "http://wmapi.meituan.com" +
            "/api/v7/loadInfo?utm_term=79103&utm_campaign=AwaimaiBwaimai&ci=10&utm_medium=android"+
            "&uuid=000000000000021664606233F4E4DADDA5FC0411309F7A165107729619026060&utm_source=1061&utm_content=";

    private static final int BUFFSIZE = 1024;

    @Override
    public void run() {
        BufferedReader in = null;
        OutputStreamWriter out = null;
        String result = "";

        // for (;;) {
        try {
            URL url = new URL(TEST_URL);
            URLConnection conn = url.openConnection();
            // System.out.println("Connection opened");

            conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
            conn.setRequestProperty("User-Agent", "Dalvik/2.1.0 (Linux; U; Android 12; SM-E5260 Build/SP1A.210812.016)");
            conn.setRequestProperty("mtgsig", "{\"a0\":\"2.4\",\"a1\":\"e68c4c18-35ec-4972-84e4-32a0836455a8\",\"a3\":8,\"a4\":1663895475,\"a5\":\"R80NtsH23ZTkCqEalD3//AKZfC3cCA3Wx1GCK1YtS0zRCl1ic9+MVDjsRjbiUzHThhl5hbVAQ/o2yMsfJoobkUgzBec7c4AHrQczZOvcSX5bGZIQzBxx9YcrR33StRUrx2zr/pj4mkR26HFSYs8x+ek3K63ExyaXjFJh8lMyVvtd/gzmwDD/xiLkdtCpowNPF6bdpa/81DUsRbvQeaYbwgvc9ykK9R1iqLNriLWPWe6L51YOITUf2vPvaLUVB4+/uOyUXpcE+JxS\",\"a6\":0,\"a7\":\"AQjne57ds4age+5cDjuX+AIgqp5gEknXCwhp4AefHD85SqWOLkWwMzVuD9ju7XCLLKGFpNnHloCM6KmEkGjextsXdKbvTAWoqfkoZPZb3zE=\",\"a8\":\"c7b58041ecb3190bcd12b1f0dea59b0557b0fb08c7a358c11b68a704\",\"a9\":\"977300bfwX4ocW1FpQsikxqBXnEbqP98AeF5G5grq/yO/sUcciD6w2UY8tWKgtI1vmoXL+Jx5BIT61QRpQyDeUt+WMeBYogG6EhRVZYuiIeOTgXXBILeRBOyVXBsR0J1zRzZgsTu3glgz+JjPWJVSI67aWLnPfIDWgzLMLgReJp7j5NxE/tJdI9HRZwz6rRRO+PSfTSDmKOvjNseAYErXVQ9qe0kci2gkSQQYG4i889YJn125CXTZRAzdahQpVjP5PFoBT1hucRaYQPhzcEzJLiyupKdVrw7tQpMQ6P4U/Z2WTsM16HmvyFW21MASPPoMtjKMpBAPz4UVAyvpW4NgCy/A0ysMRWKhpmalHnqYTSSWblEBJXrT25M9qZmDRg5u4S19I9509X0b41BAH4kbKtICNgmLCM5Gr6RblGkR/5b8N9b35vAgfFGadIFxvUwAXOjcID4/Rf4HFhgJNN7Y6bXNk06SGy8ZvLUfdcJvbBX/iHEvD2Rp3Y6JKcNyW+bP6kKQM1P8XubZX+RNNTxHwihLlfKn42RqpTVn4+ihKhHxw4cxGbFSXUOuItXcietx9NfHjkb52jAwh8m3DasDIA4i1HAOreVSb+6N/wUUiQokrhOqRhjePn27fwQwuTikm31pTslYDJ/yjb53wmWQ8H5LYL+40xxrGqi62UOPmxEQVXNwcVXvnExeb2/x+91/nIz+cvMgW5uSH/rb73mF+PKbZSN86pEM4mE/DnVYSeEKo8OCUfFyWa1gzrzGb1Xr6OyAHB0T7QI8u5Pe/0jrOFpHNcsTK7M5GtZWQqiJ6V/f4/ILOKFma2kRiWfZ/Sl4Ww7Re49PX4SetfszL96jMQHta14MhS+qz9/sI3NwZeG7xzKCDhDcnQS9cqHSQ0E7SA+GanYQExRdxPe4Ms7wn7PMhL9McXa4IYfeXlB+iNNaeX/hyM=\",\"a10\":\"2,215\",\"x0\":1,\"a2\":\"2ea8767973e321f46a825291403c9fdc\"}");
            // 发送POST请求必须设置如下两行
            conn.setDoOutput(true);
            conn.setDoInput(true);

            // 获取URLConnection对象对应的输出流
            out = new OutputStreamWriter(conn.getOutputStream(), "utf-8");
            // 发送请求参数
            out.write("wm_appversion=7.91.3&wmUuidDeregistration=0&wm_ctype=android&userid=863371691&uuid=000000000000021664606233F4E4DADDA5FC0411309F7A165107729619026060&platform=4&personalized=1&poilist_mt_cityid=10&content_personalized_switch=0&ad_personalized_switch=0&wm_visitid=8a4184cd-016d-4616-b0a4-fee1a795ec10&wm_dversion=31_12&wm_logintoken=V1e84onq06trJZZI4jIwb_weclEAAAAA-BMAADLQLHwJhXKlXc9LAlAbGf2cQ4DwPSDW6pZaYB6DHpa72I26N60N1-7DnC_iDVG2Bg&push_token=dpshac93aebb6d730463d8bbd1f4b9a228cfatpu&app=4&poilist_wm_cityid=310100&wm_pwh=1&wmUserIdDeregistration=0&version=7.91.3&app_model=0&wm_dtype=SM-E5260&wm_uuid=000000000000021664606233F4E4DADDA5FC0411309F7A165107729619026060&partner=4&seq_id=465&wm_channel=1061&request_id=3F8EC611-F52D-4AFC-A2D6-508B1F7F4AFD&req_time=1663895475285&waimai_sign=DcUr1Amp%2FdYOdh1o%2BZJT794A9%2FY8j96G9EMLqHkoJGghb1SSJ0bgMaGKviDV6EaV%2BLoRdw%2FpQyUyou2wHYMfOOfV8JRWGNNoeoODi9vuN1Erb7TLJ5QapicvWoOp%2Be1y3zLYhCodIXBTUSPQDY63LMLZUhMvKB3TIrIWl2%2FY48A%3D&app_pn=com.sankuai.meituan.takeoutnew&width=1080&height=2172&last_time_latitude=31252281&last_time_longitude=121328650");
            // flush输出流的缓冲
            out.flush();

            in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
            String line;
            StringBuilder sb = new StringBuilder();
            while ((line = in.readLine()) != null) {
                sb.append(line);
            }
            result = sb.toString();

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            // 使用finally块来关闭输出流、输入流
            try {
                if (in != null) {
                    in.close();
                }
                if (out != null) {
                    out.close();
                }
            } catch (IOException ex) {
                System.out.println("HTTP_LOG_INFO:" + ex);
            }
        }
        System.out.printf("POST result: %s\n", result);
        // }
    }
}
  • Main.java
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class Main {

    public static void main(String[] args) {
        ExecutorService es = Executors.newFixedThreadPool(1000);

        Thread thread = new Thread(new MyThread());
        for (int i = 0; i < 10000; i++) {
            es.execute(thread);
        }
    }

}

输出:

POST result: {"data":{"log_max_count_per_request":"60","image_quality_default":"60","filter_group_resource":[{"need_dot":false,"dot_max_version":0,"need_pop":false,"pop_max_version":0,"group_id":-2,"group_name":"品类","is_show":false},{"need_dot":false,"dot_max_version":0,"need_pop":false,"pop_max_version":0,"group_id":27,"group_name":"速度","is_show":true},{"need_dot":true,"dot_max_version":2,"need_pop":false,"pop_max_version":0,"group_id":-1,"group_name":"全部筛选","is_show":false}],"refresh_homepage_interval":"10000","startconfig":[{"type":1,"key":"tab_poi_normal","value":"http://p1.meituan.net/xianfu/16cce78730f69624044edcbaeadac1782048.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"tab_poi_selected","value":"http://p1.meituan.net/xianfu/66298c08a5aa018bf43dd81ed0aa1a382048.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"tab_order_normal","value":"http://p0.meituan.net/xianfu/17b556961deab6e23abf2fae3e35a5072048.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"tab_order_selected","value":"http://p0.meituan.net/xianfu/69cf1bd4139200deb928c9a6379305e72048.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"tab_user_normal","value":"http://p1.meituan.net/xianfu/6dbc443ed073d2bd514caa738777f7852048.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"tab_user_selected","value":"http://p0.meituan.net/xianfu/e05316f390a50347c2405b14e72276014096.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"btn_shopping_cart_disabled","value":"http://p0.meituan.net/xianfu/3c1dad401060612826fea90446fbdf824096.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"btn_shopping_cart_normal","value":"http://p0.meituan.net/xianfu/e96a2865c104152ca26b7de421603fc04096.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0},{"type":1,"key":"bg_bottom_tab","value":"http://p1.meituan.net/xianfu/3dcd62ff835b634e9369d67afa1311b32048.png","stime":1451577600,"etime":1451577601,"source":0,"scene_type":0}],"refresh_time_clock":{"refreshClock":3,"delayTimeInMil":60000},"use_old_act_info":false,"search_pic_mode_icon":true,"log_cache_limit_new":"30","channel_search_show_highlight_info":{"default_search_words":"请输入您需要的商品","channels":["20","21"]},"sortby_search":{"SEARCH_PRODUCT":[{"code":0,"name":"综合排序","short_name":"","icon_url":"http://p1.meituan.net/aichequan/dfca522fc05590e55739d21c616bd271917.png","icon_url_click":"http://p1.meituan.net/aichequan/9b1bcc22831eaf93aea435a473522d70865.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":2,"name":"速度最快","short_name":"速度","icon_url":"http://p0.meituan.net/aichequan/30f5dccdf0131bc95b38c98d834d5ddd937.png","icon_url_click":"http://p0.meituan.net/aichequan/bdfa69ff79d35874e0db6cfd5554f626912.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":1,"name":"商家销量最高","short_name":"商家销量","icon_url":"http://p1.meituan.net/xianfu/51635adbb08819d5586c3e1feb0946c62052.png","icon_url_click":"http://p0.meituan.net/xianfu/31c8e28240571276801a6d99c55a88f82048.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":5,"name":"距离最近","short_name":"距离","icon_url":"http://p1.meituan.net/xianfu/a2b46aa4d74f015188a169de865ff0a62048.png","icon_url_click":"http://p1.meituan.net/xianfu/d5537fd9e6087644eca3588dba04f20f2048.png","position":0,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":3,"name":"商家星级最高","short_name":"评分","icon_url":"http://p1.meituan.net/aichequan/002a09315a10330efa4c185e1597a7ae1209.png","icon_url_click":"http://p0.meituan.net/aichequan/0f5e1ded2dad17e4fe76f07da6c390e71192.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":4,"name":"起送价最低","short_name":"起送价","icon_url":"http://p1.meituan.net/aichequan/0c553181fbec8cb0d417ac5853d500eb1639.png","icon_url_click":"http://p1.meituan.net/aichequan/6a02c53443e4bddd0c00358d32203a7d1535.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":6,"name":"配送费最低","short_name":"配送费","icon_url":"http://p0.meituan.net/aichequan/1b3acb36e6d7e48943d3546e47fdbbd61188.png","icon_url_click":"http://p0.meituan.net/aichequan/0ffc191ed3ed6a5564196c67a5a083bc1093.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}}],"SEARCH_POI":[{"code":0,"name":"综合排序","short_name":"","icon_url":"http://p1.meituan.net/aichequan/dfca522fc05590e55739d21c616bd271917.png","icon_url_click":"http://p1.meituan.net/aichequan/9b1bcc22831eaf93aea435a473522d70865.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":1,"name":"销量最高","short_name":"销量","icon_url":"http://p1.meituan.net/xianfu/51635adbb08819d5586c3e1feb0946c62052.png","icon_url_click":"http://p0.meituan.net/xianfu/31c8e28240571276801a6d99c55a88f82048.png","position":0,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":2,"name":"速度最快","short_name":"速度","icon_url":"http://p0.meituan.net/aichequan/30f5dccdf0131bc95b38c98d834d5ddd937.png","icon_url_click":"http://p0.meituan.net/aichequan/bdfa69ff79d35874e0db6cfd5554f626912.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":5,"name":"距离最近","short_name":"距离","icon_url":"http://p1.meituan.net/xianfu/a2b46aa4d74f015188a169de865ff0a62048.png","icon_url_click":"http://p1.meituan.net/xianfu/d5537fd9e6087644eca3588dba04f20f2048.png","position":0,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":3,"name":"商家星级最高","short_name":"评分","icon_url":"http://p1.meituan.net/aichequan/002a09315a10330efa4c185e1597a7ae1209.png","icon_url_click":"http://p0.meituan.net/aichequan/0f5e1ded2dad17e4fe76f07da6c390e71192.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":4,"name":"起送价最低","short_name":"起送价","icon_url":"http://p1.meituan.net/aichequan/0c553181fbec8cb0d417ac5853d500eb1639.png","icon_url_click":"http://p1.meituan.net/aichequan/6a02c53443e4bddd0c00358d32203a7d1535.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":6,"name":"配送费最低","short_name":"配送费","icon_url":"http://p0.meituan.net/aichequan/1b3acb36e6d7e48943d3546e47fdbbd61188.png","icon_url_click":"http://p0.meituan.net/aichequan/0ffc191ed3ed6a5564196c67a5a083bc1093.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":8,"name":"人均高到低","short_name":"","icon_url":"http://p1.meituan.net/xianfu/72fd97c200c870ee8bf5d800dec4b25e1517.jpg","icon_url_click":"http://p0.meituan.net/aichequan/769a166c1c095ec8a3c47bdb70d4bd49353.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":7,"name":"人均低到高","short_name":"","icon_url":"http://p0.meituan.net/xianfu/f445e20e92645b4265b40ba5e04243a71485.jpg","icon_url_click":"http://p1.meituan.net/aichequan/248b54fa8a0b7b45f36365f2d96736c0351.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}}]},"customer_service_time":"9:00-23:00","food_collect_poi_min_price":"10","filter_reveal":true,"refresh_poilist_interval":"10","version_update_bg_image_url":"http://p1.meituan.net/aichequan/8f8267fd9616b65b0c26d98172226394115848.png","config_checklist_interval":"1","address_filter_poitype":"国家名,省级地名,直辖市级地名,地市级地名,区县级地名,乡镇级地名,街道级地名,村庄级地名,村组级地名,其他行政地名","sortby_channel":{"SELF_DELIVERY":[{"code":5,"name":"距离最近","short_name":"距离","icon_url":"http://p1.meituan.net/xianfu/a2b46aa4d74f015188a169de865ff0a62048.png","icon_url_click":"http://p1.meituan.net/xianfu/d5537fd9e6087644eca3588dba04f20f2048.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":1,"name":"销量最高","short_name":"销量","icon_url":"http://p1.meituan.net/xianfu/51635adbb08819d5586c3e1feb0946c62052.png","icon_url_click":"http://p0.meituan.net/xianfu/31c8e28240571276801a6d99c55a88f82048.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":3,"name":"评分最高","short_name":"评分","icon_url":"http://p1.meituan.net/aichequan/002a09315a10330efa4c185e1597a7ae1209.png","icon_url_click":"http://p0.meituan.net/aichequan/0f5e1ded2dad17e4fe76f07da6c390e71192.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":8,"name":"人均高到低","short_name":"","icon_url":"http://p1.meituan.net/xianfu/72fd97c200c870ee8bf5d800dec4b25e1517.jpg","icon_url_click":"http://p0.meituan.net/aichequan/769a166c1c095ec8a3c47bdb70d4bd49353.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":7,"name":"人均低到高","short_name":"","icon_url":"http://p0.meituan.net/xianfu/f445e20e92645b4265b40ba5e04243a71485.jpg","icon_url_click":"http://p1.meituan.net/aichequan/248b54fa8a0b7b45f36365f2d96736c0351.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}}],"WHOLE_CITY":[{"code":0,"name":"综合排序","short_name":"","icon_url":"http://p1.meituan.net/aichequan/dfca522fc05590e55739d21c616bd271917.png","icon_url_click":"http://p1.meituan.net/aichequan/9b1bcc22831eaf93aea435a473522d70865.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":2,"name":"速度最快","short_name":"速度","icon_url":"http://p0.meituan.net/aichequan/30f5dccdf0131bc95b38c98d834d5ddd937.png","icon_url_click":"http://p0.meituan.net/aichequan/bdfa69ff79d35874e0db6cfd5554f626912.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":3,"name":"评分最高","short_name":"评分","icon_url":"http://p1.meituan.net/aichequan/002a09315a10330efa4c185e1597a7ae1209.png","icon_url_click":"http://p0.meituan.net/aichequan/0f5e1ded2dad17e4fe76f07da6c390e71192.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":5,"name":"距离最近","short_name":"距离","icon_url":"http://p1.meituan.net/xianfu/a2b46aa4d74f015188a169de865ff0a62048.png","icon_url_click":"http://p1.meituan.net/xianfu/d5537fd9e6087644eca3588dba04f20f2048.png","position":0,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":6,"name":"配送费最低","short_name":"配送费","icon_url":"http://p0.meituan.net/aichequan/1b3acb36e6d7e48943d3546e47fdbbd61188.png","icon_url_click":"http://p0.meituan.net/aichequan/0ffc191ed3ed6a5564196c67a5a083bc1093.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}}]},"contact_phone_verifycode":"10109777","log_max_upload_times":"12","order_addr_distance":"300","sniffer_switch":false,"sortby":[{"code":0,"name":"综合排序","short_name":"","icon_url":"http://p1.meituan.net/aichequan/dfca522fc05590e55739d21c616bd271917.png","icon_url_click":"http://p1.meituan.net/aichequan/9b1bcc22831eaf93aea435a473522d70865.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":1,"name":"销量优先","short_name":"销量","icon_url":"http://p1.meituan.net/xianfu/51635adbb08819d5586c3e1feb0946c62052.png","icon_url_click":"http://p0.meituan.net/xianfu/31c8e28240571276801a6d99c55a88f82048.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":5,"name":"距离优先","short_name":"距离","icon_url":"http://p1.meituan.net/xianfu/a2b46aa4d74f015188a169de865ff0a62048.png","icon_url_click":"http://p1.meituan.net/xianfu/d5537fd9e6087644eca3588dba04f20f2048.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":2,"name":"速度优先","short_name":"速度","icon_url":"http://p0.meituan.net/aichequan/30f5dccdf0131bc95b38c98d834d5ddd937.png","icon_url_click":"http://p0.meituan.net/aichequan/bdfa69ff79d35874e0db6cfd5554f626912.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":3,"name":"评分优先","short_name":"评分","icon_url":"http://p1.meituan.net/aichequan/002a09315a10330efa4c185e1597a7ae1209.png","icon_url_click":"http://p0.meituan.net/aichequan/0f5e1ded2dad17e4fe76f07da6c390e71192.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":4,"name":"起送价最低","short_name":"起送价","icon_url":"http://p1.meituan.net/aichequan/0c553181fbec8cb0d417ac5853d500eb1639.png","icon_url_click":"http://p1.meituan.net/aichequan/6a02c53443e4bddd0c00358d32203a7d1535.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":6,"name":"配送费最低","short_name":"配送费","icon_url":"http://p0.meituan.net/aichequan/1b3acb36e6d7e48943d3546e47fdbbd61188.png","icon_url_click":"http://p0.meituan.net/aichequan/0ffc191ed3ed6a5564196c67a5a083bc1093.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":8,"name":"人均高到低","short_name":"","icon_url":"http://p1.meituan.net/xianfu/72fd97c200c870ee8bf5d800dec4b25e1517.jpg","icon_url_click":"http://p0.meituan.net/aichequan/769a166c1c095ec8a3c47bdb70d4bd49353.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}},{"code":7,"name":"人均低到高","short_name":"","icon_url":"http://p0.meituan.net/xianfu/f445e20e92645b4265b40ba5e04243a71485.jpg","icon_url_click":"http://p1.meituan.net/aichequan/248b54fa8a0b7b45f36365f2d96736c0351.png","position":1,"bubble_info":{"is_show":false,"bubble_version":0}}],"https_config":{"https_switch":0,"host_black_list":["unionid.data.meituan.com","api.map.meituan.com","frep.meituan.net","gw.sec.meituan.com","push.mobile.meituan.com","advert.mobile.meituan.com","i.meituan.com","tpl.dianping.com","www.wmy-ad.com","survey.meituan.com","api.sunflower.waimai.meituan.com","yunying.c.waimai.meituan.com","activity.waimai.meituan.com"]},"smart_assistant_config":{"scene_config":"[{\"time\":{\"poiPage\": -1,\"submitOrderPage\": 60,\"dealOrder\": -1},\"action\":{\"visitPoiPage\": 5,\"visitSubmitOrderPage\": -1}}]"},"contact_phone":"10109777","image_quality_basic":"80","contact_phone_verifycode_switch_for_order":1,"preload_webview_page_url":"https://i.waimai.meituan.com/node/opt/index-prod.html","tiprefreshtime":"30","prefer_show":1,"global_shopping_cart_entrance_switch":true,"pre_locate_interval_x":"900","feedback_faq_url":"http://i.waimai.meituan.com/static/html/faq.html?terminal=wmapp","startpicture":[],"search_address_select_distance_diff":"500","shopping_cart_info":{"cart_id":"","wm_poi_id":0},"use_dynamic_style":true,"relocate_time_threshold":"5","template_id_url_list":{"platinum_template_id_url_list":[]},"order_status_refresh_time":30,"service_feedback_url":"https://kf.dianping.com/csCenter/access/waimai_screenshot_waimaiapp?userId=863371691&appName=android&appVer=7.91.3","is_search_entrance_show_keyboard":"1","lastorderrefreshtime":60,"coupon_help_url":"http://i.waimai.meituan.com/c/coupon_rules/index.html?FEABP=A","ad_banner_icon":"http://p0.meituan.net/aichequan/133ad479c38a30dbb0173543f9af2e6e438.png","client_push_notify":"{\"client_push_notify_days\":60,\"client_push_notify_times\":2}","order_max_shipping_time":"720","share_info":{"content":"美团外卖,外卖神器;下单就减,最高减20。","icon":"http://p1.meituan.net/xianfu/a510a5c7d783da4e813c8c4d90cdc0df4096.png","url":"http://i.waimai.meituan.com/static/html/app-popularize.html?channel=1601","title":"美团外卖,餐餐优惠。","channels":[1,2,3,4]},"poi_list_show_similar_and_favorite_switch":true,"prefer_title":"美团外卖优惠规则","activity_bubble_info":{"is_show":true,"bubble_version":2},"pre_locate_interval":"900","refresh_home_feed_tab":1,"change_binded_phone_kf_phone":"10107888","contact_phone_verifycode_switch_for_login":1,"image_quality_operation":"100","im_link_switch":1,"log_cache_limit":"2000","search_easter_egg_picture":[],"food_collect_order_min_price_rate":"0.7","food_card_style_info":[{"page_scene":"poi_food","styles":[{"style_template_id":"767_restaurant_old_style","download_url":"https://s3plus.meituan.net/v1/mss_cba0955903b447ea8e295afd68f55772/decisionprocess-bucket/767_restaurant_old_style-v1","md5":"341911b35a9a73aae0aaf4d1612b9fb9"},{"style_template_id":"746","download_url":"https://s3plus.meituan.net/v1/mss_cba0955903b447ea8e295afd68f55772/decisionprocess-bucket/770-xbk-style","md5":"af4ee794645be6e5bf234ebddfb1b89d"}]}],"address_cache_valid_time":720,"shark_switch_x":1,"ad_poi_icon":"http://p0.meituan.net/aichequan/133ad479c38a30dbb0173543f9af2e6e438.png","location_priority":"2","config_checklist":"CV6rZeD34tFG5oWKuGUFH48RuhqGMc3bzZeaHrtuweXM6S8MoFMExA01uHstQ3r6xHP2MsVF4YkEYYsbMnSrh8DftggY/YMxDBtC8nQrb4hdroz4V9TaXgmN2N4BIXsXyBQ2lDxU4exFnWAH07ZW1g7aBAzextlEsmKLcH9bbEYob9U+hm4qZh1C0bjTc3iThRNhkclOpGAKKcR0WGVL9a6vhl/gRVRcaEwZYcKEz7m5eQMKEhuYiEmbBcT+vzG4I3YpYCrWK/amaE0kQ0jiYcnEfgwe8x2b0swOqPR8zOcNhj5Bb9g5phvjY0u80ZxM2kFJZBMSpkGSoZzz/2YLnz908pbnSN1iVaWOZMR9MVbMkAmMBtDea2c3pp+DBFDEzgaOD/ZLVLGMYmf003dvock9GB195aQSD8fb7ST3b8bf7XI3Vu4gOVN5yK1Ue+2zv3yJ20vNWMeLcjKQFWY4uk0ATZDF1ia/7oyUqIM/1fmkC/gwJlHt5uInrBd4W/0IkCM6NhXsZyTguwUGy549iC/hCavv7Vd+ysOXsgiNIcjHbrMl286Rj9z2PaZODLE99jlbjh86Spu1F04IMgoCiIryfbhxZldS7utWReAhzCeEHcjHwnkJyQx9YEmRawXtRWiOX4m+XLjh1Jfo+RwhlkKLi1Hsj9D9cdFw73mlEmk=","cat_switch":"1","thumb_image_quality":"60","message_center_switch":1,"food_collect_activity_min_price_rate":"0.8","individualization":{"un_use_individualization":"7","individualization_switch":"180"},"search_pic_mode_bubble_guide":true,"prefer_url":"https://i.waimai.meituan.com/c/discount_rules/index.html?terminal=mtapp","app_embedded_h5_with_region_info":1,"customer_service_url":"http://kefu.waimai.meituan.com/customerServiceRobot/chatPage","relocate_time_threshold_x":"300","dislike_reason_info":{"add_tip":"商家已经沉底,小袋之后会减少推荐~","cancel_tip":"商家已经被置底","reason_list":[{"code":2,"tip":"服务差","show_special":0},{"code":3,"tip":"口味不好","show_special":0},{"code":4,"tip":"距离太远","show_special":0},{"code":1,"tip":"其他理由","show_special":1}]},"start_pic_log_period":7,"refresh_homepage_location_interval":"15","core_path_log_report_switch":0,"product_list_guide":{"enable_guide":true,"show_view_poi_num":10,"show_enter_poi_num":5,"disappear_second":6},"map_priority":"2","address":{"search_address_poitype":"120000,120100,120200,120201,120202,120300,120301,120302,120303,120304,141200,141201,141202,141203,141204,141205,141206,190400,190401,190402,190403,170100,100104,100103,100102,100100,100101","suggest_type":"2","search_address_sort":"1","search_address_pernum":"10","search_address_radius":"1000","search_address_codes":"010000,020000,030000,040000,050000,060000,070000,080000,090000,100000,110000,130000,150000,160000,170000,070600,090101,090102,090200,090300,120000,120100,120200,120201,120202,120300,120301,120302,120303,120304,141201,141202,141206,150100,150200,150400,170300,190401,190402,190403,170100"},"support_privacy_popup":false,"message_center_refresh_time":30,"prefer_portal":"优惠规则","poi_notification_dwell_time":"3000","vip_icon":"http://p0.meituan.net/xianfu/7b941ad9c5d0d81e861216b2ee23d39d2048.png"},"code":0,"msg":"成功","traceid":"5543315078296657479"}

Process finished with exit code 130 (interrupted by signal 2: SIGINT)
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容