summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJimmy Thrasibule <jimmy@thrasibule.mx>2018-04-13 04:27:01 -0400
committerPieter Ennes <pieter@ennes.nl>2018-04-13 10:27:01 +0200
commitd49b9f02a821dca920c89b24540485da3b96bf1e (patch)
tree67c399da9946a5cc82aaa1efbad95aba5943edd9 /examples
parent46f79e027a3fda7b012e3d786cbb1ee945af508f (diff)
downloadoauthlib-d49b9f02a821dca920c89b24540485da3b96bf1e.tar.gz
Add request argument to confirm_redirect_uri (#504) (#504)
Diffstat (limited to 'examples')
-rw-r--r--examples/skeleton_oauth2_web_application_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/skeleton_oauth2_web_application_server.py b/examples/skeleton_oauth2_web_application_server.py
index 8bfd936..e53232f 100644
--- a/examples/skeleton_oauth2_web_application_server.py
+++ b/examples/skeleton_oauth2_web_application_server.py
@@ -67,7 +67,7 @@ class SkeletonValidator(RequestValidator):
# state and user to request.scopes and request.user.
pass
- def confirm_redirect_uri(self, client_id, code, redirect_uri, client, *args, **kwargs):
+ def confirm_redirect_uri(self, client_id, code, redirect_uri, client, request, *args, **kwargs):
# You did save the redirect uri with the authorization code right?
pass