Browse Source

Added scopeless kwarg to discord.utils.oauth_url

pull/10080/head
Dep 3 months ago
committed by GitHub
parent
commit
b1b736971a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      discord/utils.py

5
discord/utils.py

@ -327,7 +327,7 @@ def oauth_url(
permissions: Permissions = MISSING, permissions: Permissions = MISSING,
guild: Snowflake = MISSING, guild: Snowflake = MISSING,
redirect_uri: str = MISSING, redirect_uri: str = MISSING,
scopes: Iterable[str] = MISSING, scopes: Optional[Iterable[str]] = MISSING,
disable_guild_select: bool = False, disable_guild_select: bool = False,
state: str = MISSING, state: str = MISSING,
) -> str: ) -> str:
@ -369,7 +369,8 @@ def oauth_url(
The OAuth2 URL for inviting the bot into guilds. The OAuth2 URL for inviting the bot into guilds.
""" """
url = f'https://discord.com/oauth2/authorize?client_id={client_id}' url = f'https://discord.com/oauth2/authorize?client_id={client_id}'
url += '&scope=' + '+'.join(scopes or ('bot', 'applications.commands')) if scopes is not None:
url += '&scope=' + '+'.join(scopes or ('bot', 'applications.commands'))
if permissions is not MISSING: if permissions is not MISSING:
url += f'&permissions={permissions.value}' url += f'&permissions={permissions.value}'
if guild is not MISSING: if guild is not MISSING:

Loading…
Cancel
Save