Help for this page

Select Code to Download


  1. or download this
    sub call {
        my $self = shift;
    ...
    
        $self->_head($self->{Request}, $cb);
    }
    
  2. or download this
    $api->call(GET => ['foo', $spam],              'json', undef, undef, s
    +ub { ... });  ## Program M, works
    $api->call(GET => ['bar', $spam, 'baz', $ham], 'json', undef, undef, s
    +ub { ... });  ## Program C, doesn't work