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

Commit 208cdc0

Browse files
committed
Added argument.
1 parent 4e6ba55 commit 208cdc0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/oidcrp/rp_handler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,14 +727,15 @@ def get_access_and_id_token(self, authorization_response=None, state='',
727727
return {'access_token': access_token, 'id_token': id_token}
728728

729729
# noinspection PyUnusedLocal
730-
def finalize(self, issuer, response):
730+
def finalize(self, issuer, response, behaviour_args: Optional[dict] = None):
731731
"""
732732
The third of the high level methods that a user of this Class should
733733
know about.
734734
Once the consumer has redirected the user back to the
735735
callback URL there might be a number of services that the client should
736736
use. Which one those are are defined by the client configuration.
737737
738+
:param behaviour_args: For fine tuning
738739
:param issuer: Who sent the response
739740
:param response: The Authorization response as a dictionary
740741
:returns: A dictionary with two claims:

0 commit comments

Comments
 (0)