Help for this page

Select Code to Download


  1. or download this
    my $browser  = LWP::UserAgent::JSON->new();
    my $response = $browser->put( $url, Content => to_json($data) );
    
  2. or download this
    my $request = HTTP::Request::JSON->new(
            'PUT', $url,
    ...
    
        my $browser  = LWP::UserAgent::JSON->new();
        my $response = $browser->request($request);