# File lib/twitter/client/friends_and_followers.rb, line 66 def friend_ids(*args) options = {:cursor => -1} options.merge!(args.last.is_a?(Hash) ? args.pop : {}) user = args.first options.merge_user!(user) cursor = get("/1/friends/ids.json", options) Twitter::Cursor.new(cursor, 'ids') end