# File lib/twitter/client/friendship.rb, line 138
      def friendships_outgoing(options={})
        options = {:cursor => -1}.merge(options)
        response = get('1/friendships/outgoing', options)
        format.to_s.downcase == 'xml' ? Hashie::Mash.new(:ids => response['id_list']['ids']['id'].map{|id| id.to_i}) : response
      end