module Feedlr::Gateway::Shorten

Shorten API

@see developer.feedly.com/v3/shorten/

Public Instance Methods

shorten_entry(entry_id) click to toggle source

Create a shortened URL for an entry

@see developer.feedly.com/v3/shorten/#create-a-shortened-url-for-an-entry @param entry_id [String] @return [String]

# File lib/feedlr/gateway/shorten.rb, line 12
def shorten_entry(entry_id)
  build_object(:get , "/shorten/entries/#{CGI.escape(entry_id) }")
end