Skip to content

Guide: Managing Voice Chat #7620

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/discord-social-sdk/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To implement the Discord Social SDK, developers for all platforms will generally
- Implement [unified friends list](/docs/discord-social-sdk/development-guides/creating-a-unified-friends-list) and [relationships](/docs/discord-social-sdk/development-guides/managing-relationships).
- Use [rich presence](/docs/discord-social-sdk/development-guides/setting-rich-presence) for game activity updates.
- Set up [lobbies](/docs/discord-social-sdk/development-guides/managing-lobbies) for multiplayer interaction and [game invites](/docs/discord-social-sdk/development-guides/managing-game-invites).
- Manage [direct message](/docs/discord-social-sdk/development-guides/sending-direct-messages), [linked channels](/docs/discord-social-sdk/development-guides/creating-a-unified-friends-list), and [voice communication](/docs/discord-social-sdk/development-guides/joining-voice-chat).
- Manage [direct message](/docs/discord-social-sdk/development-guides/sending-direct-messages), [linked channels](/docs/discord-social-sdk/development-guides/creating-a-unified-friends-list), and [voice communication](/docs/discord-social-sdk/development-guides/managing-voice-chat).
5. Handle events & API calls:
- Listen for changes in friend lists, presence updates, and chat messages.
- Use Discord's APIs to update statuses, send messages, and manage connections.
Expand Down Expand Up @@ -144,7 +144,7 @@ Users can communicate via direct messages (DMs) and voice calls:
| Development Guides |
|------------------------------------------------------------------------------------------------|
| [Sending Direct Messages](/docs/discord-social-sdk/development-guides/sending-direct-messages) |
| [Joining Voice Chat](/docs/discord-social-sdk/development-guides/joining-voice-chat) |
| [Managing Voice Chat](/docs/discord-social-sdk/development-guides/managing-voice-chat) |

| Design Guidelines |
|-------------------------------------------------------------------------------|
Expand Down
4 changes: 2 additions & 2 deletions docs/discord-social-sdk/development-guides.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ subpages:
- development-guides/sending-direct-messages.mdx
- development-guides/managing-lobbies.mdx
- development-guides/linked-channels.mdx
- development-guides/joining-voice-chat.mdx
- development-guides/managing-voice-chat.mdx
- development-guides/integrating-moderation.mdx
- development-guides/debugging-logging.mdx
- development-guides/using-with-discord-apis.mdx
Expand Down Expand Up @@ -64,7 +64,7 @@ If you are new to the Discord Social SDK, we recommend you start with the [Getti
<Card title="Linked Channels" link="/docs/discord-social-sdk/development-guides/linked-channels" icon="TextControllerIcon">
Connect game lobbies to Discord text channels.
</Card>
<Card title="Joining Voice Chat" link="/docs/discord-social-sdk/development-guides/joining-voice-chat" icon="VoiceNormalIcon">
<Card title="Managing Voice Chat" link="/docs/discord-social-sdk/development-guides/managing-voice-chat" icon="VoiceNormalIcon">
Add in-game voice communication.
</Card>
</Container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ auto call = client->StartCallWithAudioCallbacks(lobbyId, receivedCallback, captu
icon="ChatIcon">
Enable private messaging between players.
</Card>
<Card title="Joining Voice Chat" link="/docs/discord-social-sdk/development-guides/joining-voice-chat"
<Card title="Managing Voice Chat" link="/docs/discord-social-sdk/development-guides/managing-voice-chat"
icon="VoiceNormalIcon">
Add in-game voice communication.
</Card>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ See our guide on [Linked Channels](/docs/discord-social-sdk/development-guides/l

---

## Joining Voice Chat
## Managing Voice Chat

See our guide on [Joining Voice Chat](/docs/discord-social-sdk/development-guides/joining-voice-chat) for more information on how to start a voice call in a lobby.
See our guide on [Managing Voice Chat](/docs/discord-social-sdk/development-guides/managing-voice-chat) for more information on how to start a voice call in a lobby.

---

Expand All @@ -181,7 +181,7 @@ With your game able to create and manage lobbies, you can now implement addition
<Card title="Managing Game Invites" link="/docs/discord-social-sdk/development-guides/managing-game-invites" icon="InboxIcon">
Allow players to invite friends to join their game session or party.
</Card>
<Card title="Joining Voice Chat" link="/docs/discord-social-sdk/development-guides/joining-voice-chat" icon="VoiceNormalIcon">
<Card title="Managing Voice Chat" link="/docs/discord-social-sdk/development-guides/managing-voice-chat" icon="VoiceNormalIcon">
Add voice communication to your lobbies.
</Card>
<Card title="Linked Channels" link="/docs/discord-social-sdk/development-guides/linked-channels" icon="TextControllerIcon">
Expand Down
Loading