module Feedlr::Gateway::Microsoft
Microsoft
API
@see developer.feedly.com/v3/microsoft/
The following API actions do not have corresponding methods in this module:
* Link Microsoft Account
Public Instance Methods
add_to_onenote(entry_id)
click to toggle source
Add an article in OneNote
@see developer.feedly.com/v3/microsoft/#add-an-article-in-onenote @param entry_id [String] @return [Feedlr::Success]
# File lib/feedlr/gateway/microsoft.rb, line 25 def add_to_onenote(entry_id) build_object(:post , '/microsoft/oneNoteAdd', entryId: entry_id) end
unlink_microsoft()
click to toggle source
Unlink Windows Live account
@see developer.feedly.com/v3/microsoft/#unlink-windows-live-account @return [Feedlr::Success]
# File lib/feedlr/gateway/microsoft.rb, line 16 def unlink_microsoft build_object(:delete , '/microsoft/liveAuth') end