fastapi-cloudauth icon indicating copy to clipboard operation
fastapi-cloudauth copied to clipboard

Support Multiple clientids for aws cognito

Open nraghuveer opened this issue 4 years ago • 2 comments

get_current_user = CognitoCurrentUser( region=region, userPoolId=poolid, client_id=clientid )

Often, we would like to support multiple aws Cognito app clients for a single API. Requesting a feature to support multiple app client ids for the aws Cognito objects.

Maybe something like get_current_user = CognitoCurrentUser( region=region, userPoolId=poolid, client_id=[clientid1, clientid2] )

nraghuveer avatar Jun 07 '21 04:06 nraghuveer

I would be interested by this, a naive approach would probably be to keep the data in memory? Also it would be great to do that dynamically and not only at start

Minipada avatar Jun 13 '21 21:06 Minipada

I would be interested by this, a naive approach would probably be to keep the data in memory? Also it would be great to do that dynamically and not only at start

what do you mean by "dynamically"?

nraghuveer avatar Jun 20 '21 03:06 nraghuveer