add ft to migrate from cognito

This commit is contained in:
2025-10-01 23:57:47 -03:00
parent daddab444f
commit 20d0d2b00f
12 changed files with 76 additions and 25 deletions

View File

@@ -52,8 +52,6 @@ def test_token(
http_api_proxy: HttpApiProxy,
lambda_context: LambdaContext,
):
access_token = token['access_token']
tokens = dynamodb_persistence_layer.query(
key_cond_expr='#pk = :pk',
expr_attr_name={
@@ -76,7 +74,7 @@ def test_token(
},
body=urlencode(
{
'token': access_token,
'token': token['access_token'],
# 'token_type_hint': 'access_token',
}
),