mirror of
https://github.com/yawaflua/Flask-Discord.git
synced 2025-12-10 12:29:30 +02:00
71 lines
1.3 KiB
Markdown
71 lines
1.3 KiB
Markdown
# Flask-Discord
|
|
[](https://flask-discord.readthedocs.io/en/latest/?badge=latest)
|
|
|
|
Discord OAuth2 extension for Flask.
|
|
|
|
|
|
### Installation
|
|
To install current latest release you can use following command:
|
|
```sh
|
|
python3 -m pip install Flask-Discord
|
|
```
|
|
|
|
|
|
### Basic Example
|
|
```python
|
|
from flask import Flask, redirect, url_for
|
|
from flask_discord import DiscordOAuth2Session
|
|
|
|
CONFIGS = {
|
|
"client_id": 9999999999,
|
|
"client_secret": "your client secret",
|
|
"redirect_uri": "default redirect uri",
|
|
}
|
|
|
|
app = Flask(__name__)
|
|
app.secret_key = "random bytes representing flask secret key"
|
|
discord = DiscordOAuth2Session(**CONFIGS)
|
|
|
|
|
|
@app.route("/login")
|
|
def login():
|
|
return discord.create_session()
|
|
|
|
|
|
@app.route("/callback")
|
|
def callback():
|
|
discord.callback()
|
|
return redirect(url_for(".me"))
|
|
|
|
|
|
@app.route("/me")
|
|
def me():
|
|
user = discord.fetch_user()
|
|
return f"""
|
|
<html>
|
|
<head>
|
|
<title>{user.name}</title>
|
|
</head>
|
|
<body>
|
|
<img src='{user.avatar_url}' />
|
|
</body>
|
|
</html>
|
|
"""
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run()
|
|
```
|
|
|
|
|
|
### Requirements
|
|
* Flask
|
|
* requests_oauthlib
|
|
|
|
|
|
### Documentation
|
|
Head over to [documentation] for full API reference.
|
|
|
|
|
|
[documentation]: https://flask-discord.readthedocs.io/en/latest/
|