Group
Extension

Matches 4

WWW-Tumblr ( D/DA/DAMOG/WWW-Tumblr-5.3.tar.gz, DAMOG, 2019; MetaCPAN )
WWW-Tumblr/lib/WWW/Tumblr.pm ( view source; MetaCPAN )
per $blog->error unless $blog->info();

On success, methods will return a hash reference with the JSON representation
of the upstream response. This behavior has not changed from previous versions
of 
         $method => 'http://api.tumblr.com/v2/' . $url_path,
            [ Accept => 'application/json', Authorization => $request->to_authorization_header ]
        );

    } elsif ( $method eq 'POST
WWW-Tumblr ( D/DA/DAMOG/WWW-Tumblr-5.3.tar.gz, DAMOG, 2019; MetaCPAN )
WWW-Tumblr/lib/WWW/Tumblr/Blog.pm ( view source; MetaCPAN )
package WWW::Tumblr::Blog;
use Moose;
use Data::Dumper;
use JSON;

use WWW::Tumblr::API;
extends 'WWW::Tumblr';

has 'base_hostname', is => 'rw', isa => 'Str', required => 1;

tumblr_api_method info  
,
        extra_args => \%args,
    });

    if ( $response->is_success ) {
        return decode_json( $response->decoded_content)->{response};
    } else {
        $self->error( WWW::Tumblr::Respons
WWW-Tumblr ( D/DA/DAMOG/WWW-Tumblr-5.3.tar.gz, DAMOG, 2019; MetaCPAN )
WWW-Tumblr/lib/WWW/Tumblr/ResponseError.pm ( view source; MetaCPAN )
::Dumper;
use JSON 'decode_json';

has 'response', is => 'rw', isa => 'HTTP::Response';

sub code    { $_[0]->response->code }
sub reasons  {
    my $self = $_[0];
    my $j = decode_json( $_[0]->resp
WWW-Tumblr ( D/DA/DAMOG/WWW-Tumblr-5.3.tar.gz, DAMOG, 2019; MetaCPAN )
WWW-Tumblr/lib/WWW/Tumblr/API.pm ( view source; MetaCPAN )
package WWW::Tumblr::API;

use strict;
use warnings;

use Moose;
use JSON 'decode_json';
use Moose::Exporter;
Moose::Exporter->setup_import_methods(with_caller => ['tumblr_api_method']);
use WWW::Tumb
code == 301 || $response->code == 302) && $method_name eq 'avatar') ) {
            return decode_json($response->decoded_content)->{response};
        } else {
            $self->error( WWW::Tumblr::

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.