• kun4

    (@kun4)


    I try get categories(I have blog on wordpress.com) my perl script:

    #!/usr/bin/perl

    use strict;
    use warnings;

    use Carp;
    use XMLRPC::Lite;

    my $self = {
    server => XMLRPC::Lite->proxy( “https://kun4.wordpress.com/xmlrpc.php” ),
    blog_ID => ‘543282’,
    username => ‘kun4’,
    password => ‘2023e9’
    };
    my $call = $self->{ server }->call(
    ‘metaWeblog.getCategories’,
    $self->{ blog_ID } ,
    $self->{ username },
    $self->{ password }
    );

    #print $call->result;

    $call->fault and croak ‘get_categories: ‘, $call->faultstring;
    my @categories;
    push @categories, $_->{ categoryName } for @{ $call->result };
    print map { “$_\n” } @categories;
    ##############

    but everytime i get error:
    Bad login/pass combination.
    WHy ?

    My script works good on standard wordpress installation(only one wp blog, non MU)

    Why ?

    Please help me!!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Why I can’t use xmlrpc’ is closed to new replies.