I want to make signing up to my instance as unattractive to bots and vote manipulation as possible. If I could turn off all voting on Lemmy I absolutely would. I think activitypub votes are spam and just because reddit used them doesn’t mean that it should be required. I used forums and other websites for a long time before Reddit even existed without voting and my time with Reddit and now Lemmy has left me unconvinced that it is worth while. I think engagement with comments is the only thing worth anything on this platform and some day I’d like to see a sorting algorithm that only took traffic and comments into account for scoring.

Anyway, I try my best to review the users who sign up and the comments that are made to my instance. I typically deny new applicants with disposable email addresses as well.

But there are some accounts that were created that have no activity that I can see easily from lemmy-ui and I’m not really at the point where I am reviewing SQL database. I want to confirm disabling downvotes at least prevented that kind of bot activity and I was wondering if there is anything else I can be doing? I can see how upvoting fascist and western centric points of view can also be problematic by boosting a state actor’s propaganda in a mirror of downvotes silencing minority views.

  • Alliegaytor[she/her]@vegantheoryclub.org
    link
    fedilink
    English
    arrow-up
    7
    ·
    4 days ago

    I tested it using the api on this instance /api/v3/post/like and I was unable to downvote any post. I also tried /api/v3/comment/like and it would also fail due to {"error":"downvotes_are_disabled"}⏎ .

    I made sure to try and downvote a comment/post on an instance with downvotes enabled.

    Not sure why people are saying you can, unless I’ve completely screwed this up, but it seems that downvotes don’t work at all via the api if it’s disabled.

    curl
    curl --request POST \
         --url https://vegantheoryclub.org/api/v3/post/like \
         --user-agent "Mozilla/5.0 (X12; Linux x86_128) Gecko/19840101 0.821/xoferiF" \
         --header 'authorization: Bearer REDACTED ' \
         --header 'content-type: application/json' \
         --data '
    {
      "score": -1,
      "post_id": 362154
    }
    '