Chris F

Results 35 comments of Chris F

Hmm is this the first network call to Pinpoint being made by the application? When initializing push notifications, there should be a call made automatically to bootstrap the endpoint with...

Hey @victoravr. > Yes, looks like it was the first network call to Pinpoint made by the app since launch. Is there a network call made afterwards? Where in the...

After testing this out, I do think we have a potential race condition if `initializePushNotifications` and `identifyUser` are called closely in sequence due to the fact that they are both...

> ```js > ... > useEffect(() => { > if (user) { > if (user.userId) { > identifyUsertoPinpoint({ > deviceToken: deviceToken, > userId: user.userId, > optOut: 'NONE' > }); >...

Hi @ChristopherGabba. I looked into the origin point of this error a bit and found it [here](https://github.com/aws-amplify/amplify-js/blob/1625424a5f04ed6eb2ad9386ffc31d8e25f88e90/packages/storage/src/providers/s3/utils/client/runtime/xhrTransferHandler.ts#L82-L90) A couple issues with what we did and I'm talking to other engineers...

Following up my comment above. Ultimately, the error is coming from `XMLHttpRequest` itself. Inspecting the error under the hood **may** help to glean some insight as to exactly what the...

> @cwomack Before closing, just so I have a better understanding, where exactly is this "bug" happening? Understanding I'm still trying to gather the raw error event message. Is it...

> Because I'm wading in some unknown waters here, how could I inspect the actual network logs? How is this different than what I've already done? Hmm typically I would...

> Question: when device token is sent to the end user device/simulator for APNs (e.g. in a Sandbox)? > > At least on simulator, I've noticed it does not appear...

Hi @victoravr Amplify JS [v6.3.1](https://github.com/aws-amplify/amplify-js/releases/tag/aws-amplify%406.3.1) has just been released. It should contain the following fixes: https://github.com/aws-amplify/amplify-js/pull/13319 https://github.com/aws-amplify/amplify-js/pull/13353 We believe these fixes should resolve your issue of the `Missing Address` error...