logo
GuidesAuthentication

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.

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' })
});

Request Parameters

header
Authorizationstring
Required

Your Discord bearer token obtained during verification.

body
serverstring
Required

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