Extract the access token from given JWT :param jwt_data: :return:
(self, jwt_data: dict)
| 79 | |
| 80 | @abc.abstractmethod |
| 81 | def get_access_token_from_jwt(self, jwt_data: dict): |
| 82 | """ |
| 83 | Extract the access token from given JWT |
| 84 | :param jwt_data: |
| 85 | :return: |
| 86 | """ |
| 87 | raise NotImplementedError |
| 88 | |
| 89 | @abc.abstractmethod |
| 90 | def get_refresh_token_from_jwt(self, jwt_data: dict): |
no outgoing calls
no test coverage detected