Sha256: 4c186839f3dd9db4eabc3f7f37a0a0e2756bb1998ffa17370a02c98c73fc8a8e

Contents?: true

Size: 843 Bytes

Versions: 1

Compression:

Stored size: 843 Bytes

Contents

module Feedlr
  module Gateway
    # Microsoft API
    #
    # @see http://developer.feedly.com/v3/microsoft/
    #
    # The following API actions do not have corresponding methods in
    # this module:
    #
    #   * Link Microsoft Account
    module Microsoft
      # Unlink Windows Live account
      #
      # @see http://developer.feedly.com/v3/microsoft/#unlink-windows-live-account
      # @return [Feedlr::Success]
      def unlink_microsoft
        build_object(:delete , '/microsoft/liveAuth')
      end

      # Add an article in OneNote
      #
      # @see http://developer.feedly.com/v3/microsoft/#add-an-article-in-onenote
      # @param entry_id [String]
      # @return [Feedlr::Success]
      def add_to_onenote(entry_id)
        build_object(:post , '/microsoft/oneNoteAdd', entryId: entry_id)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
feedlr-0.1.0 lib/feedlr/gateway/microsoft.rb