module Feedlr::Gateway::Profile

Profile API

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

Public Instance Methods

update_profile(profile) click to toggle source

Update the profile of the user

@see developer.feedly.com/v3/profile/#update-the-profile-of-the-user @param profile [Hash] @return [Feedlr::Base]

# File lib/feedlr/gateway/profile.rb, line 20
def update_profile(profile)
  build_object(:post , '/profile' , profile)
end
user_profile() click to toggle source

Get the profile of the user

@see developer.feedly.com/v3/profile/#get-the-profile-of-the-user @return [Feedlr::Base]

# File lib/feedlr/gateway/profile.rb, line 11
def user_profile
  build_object(:get , '/profile')
end