This integration requires that you have Manage Server permissions on the Discord server you want to integrate with.
Create a Discord Application
Login to Discord on the web, and then go to the Discord Developer Portal and click on “New Application”.
Get and set your Client ID and Client Secret to a safe place.
You can find this in the OAuth2 section of the Discord Developer Portal.
Set these in your .env file as follows;
DISCORD_CLIENT_ID="your_client_id"
DISCORD_CLIENT_SECRET="your_client_secret"
Add a Redirect URI
The OAuth2 Redirect URI is the location where the provider will redirect to after trying to login. This needs to set to your Publica FRONTEND_URL
+ /integrations/social/
+ discord
.
- eg: If you are running on a container, and your Publica URL is:
https://publica.example.com
, then your OAuth2 Redirect URI ishttps://publica.example.com/integrations/social/discord
- eg: If you are running on localhost, and your Publica URL is
http://localhost:4200
, then your OAuth2 Redirect URI ishttp://localhost:4200/integrations/social/discord
You only need to set one OAuth2 Redirect URI when you are setting up your Publica app.
The redirect URI is the URL that Discord will redirect to after you have logged in. Assuming you are running Publica on publica.example.com
, this would be: https://publica.example.com/integrations/social/discord
. Alternatively if you are running on localhost:4200
, this would be http://localhost:4200/integrations/social/discord
. You only really need one of these, depending on where you are running Publica.
You can find this in the OAuth2 section of the Discord Developer Portal.
Create a Bot
Navigate to the “Bot” section of the Discord Developer Portal. Fill out the bot details however you like, and then click “Reset Token”.
With the token that is generated, set it in your .env file as follows;
DISCORD_BOT_TOKEN_ID="your_bot_token"
If you do not set this, you will get 404 errors when trying to add the Discord channel in the Publica web interface.
Stop Publica if it is running, and then start it using the .env file with the Discord details.
Add a Discord channel in the Publica web interface
Go to the Publica web interface, and click on the “Add Channel” button, and then select “Discord”. You should be redirected to Discord to login.