I'm trying to check if user has discord nitro (classic or $10 one, doesn't matter) using user.flags.toArray(), as far as I know - you can't use it to check if someone has nitro. Is there any way how you can actually check it without making someone to authorize using my OAuth?
P.S. I know there was one similar question but it was never answered!
Don't check the flags of the account, check the premium_type
More information is available in their documentation: https://discord.com/developers/docs/resources/user#user-object-user-structure https://discord.com/developers/docs/resources/user#user-object-premium-types
Cheers! :)