Help for this page

Select Code to Download


  1. or download this
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <label name="someLabel"/>
    
  2. or download this
    
    use LWP::UserAgent;
    ...
    $req->authorization_basic("username", "password");
    $req->content($message);
    my $result = $ua->request( $req );
    
  3. or download this
    The server refused this request because the request entity is in a for
    +mat not supported by the requested resource for the requested method.
    
  4. or download this
    use LWP::UserAgent;
    my $urlRequest = "http://bamboohost/rest/api/latest/result/projectname
    +-planname-latest/label";
    ...
    $req->content($message);
    $req->content_type('application/xml');
    my $result = $ua->request( $req );