Sha256: 6e9412835fd4db09866a399257235a2a3954d552072a62ea5609c6c5b092519c

Contents?: true

Size: 846 Bytes

Versions: 3

Compression:

Stored size: 846 Bytes

Contents

module AngellistApi
  class Client
    # Defines methods related to URLs
    module ActivityFeeds
      
      # Returns site activity. If authenticated and the personalized parameter is passed in, only activity from the authenticated user's social graph is returned. No more than 25 items will be returned. Results are paginated and ordered by most recent story first.
      # @requires_authentication Optional
      # @response_format `json`
      # @param options [Hash] A customizable set of options.
      # @option options [Integer] :personalized If set to 1 and a user is authenticated, only activity from the authenticated user's social graph is returned.
      # @example 
      #   AngellistApi.get_feed
      def get_feed(options={})
        get("1/feed", options, :format => :json, :phoenix => true)
      end
      
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
angellist_api-1.0.1 lib/angellist_api/client/activity_feeds.rb
angellist_api-0.1.2 lib/angellist_api/client/activity_feeds.rb
angellist_api-1.0.0 lib/angellist_api/client/activity_feeds.rb