Browse Source

Add state parameter to utils.oauth_url

Co-authored-by: Danny <[email protected]>
pull/8149/head
Miku Chan 3 years ago
committed by GitHub
parent
commit
40f12c8a00
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      discord/utils.py

18
discord/utils.py

@ -288,13 +288,14 @@ def oauth_url(
redirect_uri: str = MISSING,
scopes: Iterable[str] = MISSING,
disable_guild_select: bool = False,
state: str = MISSING,
) -> str:
"""A helper function that returns the OAuth2 URL for inviting the bot
into guilds.
.. versionchanged:: 2.0
``permissions``, ``guild``, ``redirect_uri``, and ``scopes`` parameters
``permissions``, ``guild``, ``redirect_uri``, ``scopes`` and ``state`` parameters
are now keyword-only.
Parameters
@ -315,6 +316,10 @@ def oauth_url(
disable_guild_select: :class:`bool`
Whether to disallow the user from changing the guild dropdown.
.. versionadded:: 2.0
state: :class:`str`
The state to return after the authorization.
.. versionadded:: 2.0
Returns
@ -328,12 +333,15 @@ def oauth_url(
url += f'&permissions={permissions.value}'
if guild is not MISSING:
url += f'&guild_id={guild.id}'
if redirect_uri is not MISSING:
from urllib.parse import urlencode
url += '&response_type=code&' + urlencode({'redirect_uri': redirect_uri})
if disable_guild_select:
url += '&disable_guild_select=true'
if redirect_uri is not MISSING or state is not MISSING:
from urllib.parse import urlencode
if redirect_uri is not MISSING:
url += '&response_type=code&' + urlencode({'redirect_uri': redirect_uri})
if state is not MISSING:
url += f'&{urlencode({"state": state})}'
return url

Loading…
Cancel
Save