• apache mq 发送消息


    curl -u admin:admin -d "body=message" http://localhost:8161/api/message/TEST?type=queue
    
    
    CURL授权
    
    在访问需要授权的页面时,可通过-u选项提供用户名和密码进行授权
    
    
     -d/--data <data>   HTTP POST data (H)
    
    
    use  LWP::UserAgent;   
    use LWP;  
    use Encode;  
    use LWP::Simple;  
    use LWP::UserAgent;  
    use HTTP::Cookies;  
    use HTTP::Headers;  
    use HTTP::Response;  
    use Encode;  
    use URI::Escape;  
    use URI::URL;  
    use JSON;  
    use Data::Dumper;  
      my $ua = LWP::UserAgent->new;  
         $ua->agent("Mozilla/5.0 (Windows NT 6.1; rv:30.0) Gecko/20100101 Firefox/30.0");  
      my $cookie_jar = HTTP::Cookies->new(  
         file=>'lwp_cookies.txt',  
         autosave=>1,  
         ignore_discard=>1);  
         $ua->cookie_jar($cookie_jar);    
      my $login_url ="http://admin:admin@192.168.137.3:8161/api/message/czcb2017?type=queue";    
       my $post = {    
       
             "body"=>"messag"
        };    
        use JSON qw(encode_json);    
        $json_string = encode_json($post);    
        
        my $req = HTTP::Request->new(    
            'POST' => $login_url  
        );    
        $req->referer("https://wx.qq.com/?&lang=zh_CN");    
        $req->content_type('application/json; charset=UTF-8')    
          ;    #post请求,如果有发送参数,必须要有这句    
        $req->content("$json_string");    #发送post的参数    
        my $res = $ua->request($req);    
        print $res->content();            #获取的是响应正文    

  • 相关阅读:
    excel导入phpmyadmin
    Python 教程资源
    SAE部署Python-让云端自动运行Python代码
    python socket 超时设置 errno10054
    使用python一步一步搭建微信公众平台(一)
    PHP读取MySQL数据
    php连接mysql并读取数据
    php分页例子实现读取mysql数据分页显示
    51Nod1305 Pairwise Sum and Divide
    SPOJ SUBXOR
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13349810.html
Copyright © 2020-2023  润新知