How do I check if a user is following me or blocked by me?
You can check your followers under the friends tab, not sure a about blocked.
Then you would send a Request to the API via a API Handler. to return the Data.
There’s only an in-platform method for checking blocked users via StarterGui.GetCore, the option GetBlockedUserIds. It’s also client-sided and doesn’t need the server to perform a web call (although it does that internally).
Nothing for checking followers. There is an endpoint for it though, /v1/users/userId/followers.
4 Likes
Thanks for your help! It’s nice to get help around here!