Hui Zhao

Results 254 comments of Hui Zhao

Hi @whummer sorry for the delay again, needed to spend time on something else. I will open a new PR for merging this feature.

> Hey @cwomack sorry about the delay. I added some extra logs to our app and was just waiting to see what came back. Below is what I found >...

Thanks @walterholohan but I'm more looking to see the headers for a failed request, the screenshot you provided showed a successful request (200) :D

View service APIs events can be done in AWS Console, for example you can [enable CloudTrail events for the Cognito User Pool and Identity Pool](https://docs.aws.amazon.com/cognito/latest/developerguide/logging-using-cloudtrail.html) and to monitor the service...

>For example we might have 3-4 API calls trigger at the same time, and if the token is expired there might be a scenario where they all call fetchAuthSession() at...

Thanks for pointing this out @smozely, we are currently exploring a better approach to perform the token validation on the server side, and we will include this performance improvement in...

Hi @smozely sorry about losing track of this issue. We have released an performance improvement regarding this issue since [email protected] and @aws-amplify@adapter-nextjs@@1.3.1 (released on 2024-12-09). I'm closing this issue, please...

Hi @tigerjiang thanks for opening this issue. Looking at your sample code: ```ts Amplify.configure(AMPLIFY_CONFIG); ``` How do you map the `amplifyconfiguration.json` to the variable `AMPLIFY_CONFIG`? Have you double checked whether...

This issue should be caused by the incompatibility between uuid v9 package.json exports and that the newer version of metro bundler enables package.json exports by default. The latest version of...

Hi @jackirvine97 Amplify JS v6 now accepts password format fields by calling `Amplify.configure()`, for exmaple: ```ts Amplify.configure( { Auth: { Cognito: { userPoolClientId: "YOUR_USER_POOL_CLIENT_ID", userPoolId: "YOUR_USER_POOL_ID", passwordFormat: { minLength: 8,...