Module: Feedlr::Gateway::Evernote
- Included in:
- Client
- Defined in:
- lib/feedlr/gateway/evernote.rb
Overview
Evernote API
The following API actions do not have corresponding methods in this module:
- Link Evernote account
Instance Method Summary collapse
-
#add_to_evernote(entry) ⇒ Feedlr::Success
Save an article as a note (Pro only).
-
#evernote_notebooks ⇒ Feedlr::Collection
Get a list of Evernote notebooks (Pro only).
-
#unlink_evernote ⇒ Feedlr::Success
Unlink Evernote account.
Instance Method Details
#add_to_evernote(entry) ⇒ Feedlr::Success
Save an article as a note (Pro only)
32 33 34 |
# File 'lib/feedlr/gateway/evernote.rb', line 32 def add_to_evernote(entry) build_object(:post , '/evernote/note' , entry) end |
#evernote_notebooks ⇒ Feedlr::Collection
Get a list of Evernote notebooks (Pro only)
23 24 25 |
# File 'lib/feedlr/gateway/evernote.rb', line 23 def evernote_notebooks build_object(:get , '/evernote/notebooks') end |
#unlink_evernote ⇒ Feedlr::Success
Unlink Evernote account
15 16 17 |
# File 'lib/feedlr/gateway/evernote.rb', line 15 def unlink_evernote build_object(:delete , '/evernote/auth') end |