Help for this page

Select Code to Download


  1. or download this
    my $res = $ua->post( $url, $field_name => $value, Content => $content 
    +);
    
  2. or download this
    $ua->post(
        $self->{'auth'}->api_url_base . 'shares',
        Content => encode_json($json),
        $header,
        );
    
  3. or download this
    $ua->post(
        $self->{'auth'}->api_url_base . 'shares',
        %$header,
        Content => encode_json($json)
    );