pypomes-iam 0.1.3__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pypomes-iam might be problematic. Click here for more details.
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/PKG-INFO +1 -1
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/pyproject.toml +1 -1
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/src/pypomes_iam/jusbr_pomes.py +2 -2
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/.gitignore +0 -0
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/LICENSE +0 -0
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/README.md +0 -0
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/src/pypomes_iam/__init__.py +0 -0
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/src/pypomes_iam/keycloak_pomes.py +0 -0
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/src/pypomes_iam/provider_pomes.py +0 -0
- {pypomes_iam-0.1.3 → pypomes_iam-0.1.4}/src/pypomes_iam/token_pomes.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypomes_iam
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: A collection of Python pomes, penyeach (IAM modules)
|
|
5
5
|
Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-IAM
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-IAM/issues
|
|
@@ -157,7 +157,7 @@ def service_login() -> Response:
|
|
|
157
157
|
user_data["cache-obj"] = safe_cache
|
|
158
158
|
auth_url: str = (f"{_jusbr_registry["auth-url"]}/protocol/openid-connect/auth?response_type=code"
|
|
159
159
|
f"&client_id={_jusbr_registry["client-id"]}"
|
|
160
|
-
f"&
|
|
160
|
+
f"&redirect_uri={_jusbr_registry["callback-url"]}"
|
|
161
161
|
f"&state={oauth_state}")
|
|
162
162
|
if user_data.get("oauth-scope"):
|
|
163
163
|
auth_url += f"&scope={user_data.get("oauth-scope")}"
|
|
@@ -439,7 +439,7 @@ def __post_jusbr(user_data: dict[str, Any],
|
|
|
439
439
|
For code for token exchange, *body_data* will have the attributes
|
|
440
440
|
- "grant_type": "authorization_code"
|
|
441
441
|
- "code": <16-character-random-code>
|
|
442
|
-
- "
|
|
442
|
+
- "redirect_uri": <callback-url>
|
|
443
443
|
For token refresh, *body_data* will have the attributes
|
|
444
444
|
- "grant_type": "refresh_token"
|
|
445
445
|
- "refresh_token": <current-refresh-token>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|