The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Evernote::Note

VERSION

Version 0.06

SYNOPSIS

    use Net::Evernote;
    use Net::Evernote::Note;

    my $evernote = Net::Evernote->new({
        authentication_token => $authentication_token
    });

my $note_title = 'test title'; my $note_tags = [qw(evernote-perl-api-test-tag-1 evernote-perl-api-test-tag-2)];

# let's throw a date in there: my $dt = DateTime->new( year => 1981, month => 4, day => 4, hour => 13, minute => 30, time_zone => 'EST' );

my $epoch_time = $dt->epoch;

my $note = $evernote->createNote({ title => $note_title, content => 'here is some test content', tag_names => $note_tags, created => $epoch_time*1000, });

my $guid = $note->guid;

my $new_note = $evernote->getNote({ guid => $guid, });

# delete it $new_note->delete;

SEE ALSO

http://www.evernote.com/about/developer/api/

AUTHOR

David Collins <davidcollins4481@gmail.com>

BUGS/LIMITATIONS

If you have found bugs, please send email to <davidcollins4481@gmail.com>

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Net::Evernote::Note

COPYRIGHT & LICENSE

Copyright 2013 David Collins, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.