The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::Douban::Note

VERSION

version 1.07_2

SYNOPSIS

        use Net::Douban::Note;
        $note = Net::Douban::Note->new(
                apikey => '....',
        # or
        oauth => $consumer,
        );

        $atom = $note->get_note(noteID => ... ) 
        $atom = $note->get_user_note(userID => 'Net-Douban');
        $atom = $note->post_note(xml => $xml);

DESCRIPTION

Interface to douban.com API Note section

METHODS

Those methods return a Net::Douban::Atom object which can be use to get data conveniently

get_user
get_user_note
delet_note
post_note
put_note

SEE ALSO

Net::Douban Net::Douban::Atom Moose XML::Atom http://www.douban.com/service/apidoc/reference/note

AUTHOR

woosley.xu<redicaps@gmail.com>

COPYRIGHT

Copyright (C) 2010 by Woosley.Xu

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.