cloudmanic/evernote-php

An easy wrapper for working with the Evernote API.

dev-master 2014-07-08 17:31 UTC

This package is not auto-updated.

Last update: 2024-04-27 11:56:58 UTC


README

This is a wrapper library for making work with the Evernote API easier with PHP.

Requirements

  1. PHP 5.3+
  2. CURL

Access Tokens

You can get an access token either via oAuth or using one of these links.

Supported Functions.

  • Cloudmanic\Evernote\Api::set_access_token($token, false)
  • $user = Cloudmanic\Evernote\Api::get_user()
  • $notebooks = Cloudmanic\Evernote\Apie::get_notebooks()
  • $guid = Cloudmanic\Evernote\Api::new_notebook('My First Notebook 3')
  • Cloudmanic\Evernote\Api::add_file('test.jpg')
  • $guid = Cloudmanic\Evernote\Api::new_note($title, $body, $notebook_guid)
  • $tags = Cloudmanic\Evernote\Api::get_tags()
  • $guid = Cloudmanic\Evernote\Api::new_tag('My First Tag')

Error Functions

  • Cloudmanic\Evernote\Api::get_error_string()
  • Cloudmanic\Evernote\Api::get_error()
  • Cloudmanic\Evernote\Api::get_error_code()
  • Cloudmanic\Evernote\Api::get_error_parameter()

Author(s)