Help for this page

Select Code to Download


  1. or download this
    $output =~ /"access_token":"(.*)", "ex/g;
    
  2. or download this
    $output =~ /"access_token":"(.*)", "ex/g
        or die "Couldn't find access token in [[$output]]";
    
  3. or download this
    use JSON 'decode_json'; # or JSON::XS , or JSON::Tiny
    
    ...
            unless $decoded_output->{access_token};
        return $output->{access_token}
    }