Authentication
Learn how accounts, logins, and permissions work across ProStudios platforms and Discords.
Overview
Prostudios uses a unified authentication system that connects your Discord identity with store accounts and platform access. You authenticate once and gain seamless entry to LFSPro, Brasília Roleplay, FivePRO, and the official store.
Authentication Methods
All Prostudios communities require Discord verification. Join any server and complete the onboarding flow to link your account.
Discord authentication is required before accessing the store or any game platform.
The Prostudios Store at store.prostudios.net uses your Discord login for purchases and license management.
Once verified, your permissions sync automatically across LFSPro, FivePRO, and roleplay servers.
Account Creation Steps
Join a Discord
Visit one of the official servers such as discord.gg/lfspro and accept the invite.
Complete Verification
Use the verification channel to connect your Discord account with the Prostudios bot.
Access the Store
Log in at store.prostudios.net using the same Discord credentials.
API Authentication Example
Use the following code to authenticate requests to Prostudios services:
const response = await fetch('https://api.example.com/auth/discord', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_DISCORD_TOKEN'
},
body: JSON.stringify({ server: 'lfspro' })
});
import requests
response = requests.post(
'https://api.example.com/auth/discord',
headers={'Authorization': 'Bearer YOUR_DISCORD_TOKEN'},
json={'server': 'lfspro'}
)
curl -X POST https://api.example.com/auth/discord \
-H "Authorization: Bearer YOUR_DISCORD_TOKEN" \
-d '{"server":"lfspro"}'
Request Parameters
Your Discord bearer token obtained during verification.
Target platform identifier such as lfspro, brasilia, or fivepro.
Security Best Practices
Never share your Discord token or store session. Revoke access immediately if you suspect a compromise.
Advanced Scenarios
You can link additional Discord accounts through the store dashboard under Account Settings. Each linked account inherits the same permissions.
If cross-platform access fails, re-verify in the Discord server and clear your browser cache before retrying the store login.
Last updated today
Built with Documentation.AI