From bcd3b625c2324a19a6ff4afd36bd52d37a407105 Mon Sep 17 00:00:00 2001 From: Luke Date: Fri, 25 Oct 2019 23:08:57 +0100 Subject: [PATCH] redirect_url => uri --- disco/api/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disco/api/client.py b/disco/api/client.py index e38899b..9edd424 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -106,7 +106,7 @@ class APIClient(LoggingClass): data = self.http(Routes.GATEWAY_BOT_GET).json() return data - def oauth2_token_get(self, grant_type, scope, code=None, refresh_token=None, redirect_url=None): + def oauth2_token_get(self, grant_type, scope, code=None, refresh_token=None, redirect_uri=None): payload = { 'client_id': self.client.state.me.id, 'client_secret': self.client.config.secret, @@ -116,7 +116,7 @@ class APIClient(LoggingClass): payload.update(optional( code=code, refresh_token=refresh_token, - redirect_url=redirect_url, + redirect_uri=redirect_uri, )) r = self.http(Routes.OAUTH2_TOKEN, data=payload) return AccessToken.create(self.client, r.json())