Skip to content

Commit

Permalink
fix: apple redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
KShivendu committed Aug 14, 2023
1 parent 3c78c0f commit bb8034d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supertokens_python/recipe/thirdparty/api/implementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async def apple_redirect_handler_post(
state_in_b64: str = form_post_info["state"]
state = b64decode(state_in_b64).decode("utf-8")
state_obj = json.loads(state)
redirect_uri: str = state_obj["redirectURI"]
redirect_uri: str = state_obj["frontendRedirectURI"]

url_obj = urlparse(redirect_uri)
qparams = parse_qs(url_obj.query)
Expand Down

0 comments on commit bb8034d

Please sign in to comment.