Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit bdaffb6

Browse files
committed
Missed request args. Necessary !!
1 parent 7d89874 commit bdaffb6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/oidcrp/rp_handler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,9 @@ def init_authorization(self, client=None, state='', req_args=None, behaviour_arg
409409
_nonce = rndstr(24)
410410
_response_type = self._get_response_type(_context, req_args)
411411
request_args = {
412-
'redirect_uri': pick_redirect_uri(_context, response_type=_response_type),
412+
'redirect_uri': pick_redirect_uri(_context,
413+
request_args=req_args,
414+
response_type=_response_type),
413415
'scope': _context.get('behaviour')['scope'],
414416
'response_type': _response_type,
415417
'nonce': _nonce

0 commit comments

Comments
 (0)