class UnfollowUser

Public Instance Methods

unfollow_user(userid , scraper) click to toggle source
# File lib/helper/unfollow_user.rb, line 2
def unfollow_user userid , scraper
  begin
    scraper.get("#{@unfollow_user_url}#{userid}")
    return {"response" => "Success"}
  rescue
    return {"response" => "Failure"}
  end
end