Discord-OAuth2-PHP is a small PHP library to use Discord OAuth2.
It doesn't intend to cover all the functionalities of Discord OAuth2 but rather to be lightweight (only dependency is curl) and easy to use.
To use this library, you must first install php-curl
sudo apt-get install php-curl
$ composer require xwilarg/discord-oauth2-php
You can also see the package on packagist.
See the sample section.
At first you need to go in the Discord developer page and create a new application.
Go in General Information and take your "client id" and "client secret", we will need them later.
Then go in OAuth2, in "Redirects" press the "Add Redirect" button and enter your redirection URL here (the page when the user will be redirected once he is logged with Discord)
You're now ready to write your PHP code, check the sample section to see how to do so.
If you have any question, feel free to open an issue.