Stars: 180
Forks: 53
Pull Requests: 17
Issues: 9
Watchers: 15
Last Updated: 2023-01-22 15:01:53
A simple, and easy to use, PHP implementation of a Discord OAuth2 login flow. Implements a "Login with Discord" button on your site. Use this repo to build your very own Discord Dashboard! 🚀
License: MIT License
Languages: PHP
Key Features • How To Use • Contributing • Support • License
This is a small collection of demos, which you can use to start building your Discord PHP application from.
This is in no way a framework, but more a sort of template that you can use to build on top of.
The idea behind the repo is to give developers a nice starting point to further expand their application from. If you do end up expanding the possibilites of the script, be sure to check out Contributing in this repo!
What is this not?
Prerequisites:
CLIENT ID
and CLIENT SECRET
Start by cloning this repository to your computer.
$ git clone https://github.com/MarkisDev/discordoauth
Now open up XAMPP Control Panel, and click on the Config
button in the Apache
module.
You want to search for "DocumentRoot", and change the values from C:/xampp/htdocs
into the path of your discordoauth
folder.
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:\WEB\discordoauth\demos"
<Directory "C:\WEB\discordoauth\demos">
octicon-info mr-2" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true">
You may want to point the root directly to one of the included examples for ease of access (C:\WEB\discordoauth\demos\simple-demo
).
Next you need to open the config.php
file for the demo you wish to run.
All demos included in this repo come with their own individual config-file. If you wish to try out multiple demos, you will need to edit the values in their respective config.php
file.
Fill out the config file as shown in the examples with values from Discord Developers Dashboard.
<?php
# CLIENT ID
$client_id = "623204361394291813";
# CLIENT SECRET
$secret_id = "roOWew9eNHEQS54SQc6v1pl8YBBiX5O0";
# SCOPES SEPARATED BY + SIGN
$scopes = "identify";
# REDIRECT URL
$redirect_url = "http://localhost/simple-demo/includes/login.php";
When you have done this, you must copy the full $redirect_url
link, and paste it on the Discord Developers Dashboard under your Applications OAuth2 Redirects.
octicon-info mr-2" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true">
You can add multiple redirects to the same application, so feel free to also add the redirects for the other demos:
http://localhost/admin-dashboard/includes/login.php
http://localhost/bot-dashboard/includes/login.php
When you have done all the above steps, you should be able to visit localhost/simple-demo in your browser, and see the OAuth demo in action!
If you encounter any issues along the way, give us a visit in our Discord Server, and we'll be sure to lead you back on the right track!
Contributions to the project are always welcome!
If you found a bug, please open an issue and let us know.
If you have a request for a feature you can also open an issue and we will take a look at it.
We accept pull requests for any fixes and/or new features.
If you want to contribute a new demo, please remember to copy any new Discord related functions to the discord.php
file in the root of the repo.
Support the Author here:
Support the Maintainer here:
Copyright (c) 2022 MarkisDev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@f-o  · @markisdev