# File lib/rbrainz/webservice/query.rb, line 439
      def submit_user_tags(mbid, tags)
        mbid = Model::MBID.parse(mbid)
        tag_string = tags.respond_to?(:to_ary) ? tags.to_ary.join(',') : tags.to_s
        params = {:entity=>mbid.entity, :id=>mbid.uuid, :tags=>tag_string}
        @webservice.post(:tag, :params=>params)
      end