summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst3
-rw-r--r--oauthlib/oauth2/rfc6749/clients/legacy_application.py1
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 70d3257..9407470 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -34,8 +34,9 @@ OAuth2.0 Provider - Bugfixes
OAuth2.0 Client - Bugfixes
* #290: Fix Authorization Code's errors processing
- * #603: BackendApplication.Client.prepare_request_body use the `scope` argument as intended.
+ * #603: BackendApplicationClient.prepare_request_body use the `scope` argument as intended.
* #672: Fix edge case when `expires_in=Null`
+ * #725: LegacyApplicationClient.prepare_request_body now correctly uses the default `scope` provided in constructor
OAuth1.0 Client
diff --git a/oauthlib/oauth2/rfc6749/clients/legacy_application.py b/oauthlib/oauth2/rfc6749/clients/legacy_application.py
index 1bb0e14..fe2ff4a 100644
--- a/oauthlib/oauth2/rfc6749/clients/legacy_application.py
+++ b/oauthlib/oauth2/rfc6749/clients/legacy_application.py
@@ -79,5 +79,6 @@ class LegacyApplicationClient(Client):
"""
kwargs['client_id'] = self.client_id
kwargs['include_client_id'] = include_client_id
+ scope = self.scope if scope is None else scope
return prepare_token_request(self.grant_type, body=body, username=username,
password=password, scope=scope, **kwargs)