reactfire icon indicating copy to clipboard operation
reactfire copied to clipboard

403 on storage request

Open steveoh opened this issue 2 years ago • 2 comments

Version info

React: 18.2.0

Firebase: 9.15.0

ReactFire: 4.2.2

Other (e.g. Node, browser, operating system) (if applicable): chrome

Test case

Steps to reproduce

  1. Upload a file to storage using useStorageTask
  2. show that image with a <StorageImage>
  3. Remove that image with a deleteObject request.
  4. Upload a different image with the same name to the same path
  5. reactfire requests the file with the wrong access token and the request fails

Expected behavior

The correct token is used to display the image from storage

Actual behavior

An old token is used and the request fails

steveoh avatar Dec 13 '22 04:12 steveoh

After digging a little deeper I think this is a firebase-js-sdk issue?

It's almost as if the token retrieved from https://github.com/firebase/firebase-js-sdk/blob/37f31c57b62bc6486bc08d9e5c64e2c32d25cb0a/packages/storage/src/implementation/metadata.ts#L171 isn't applied.

In this image you can see the token used vs the token sent back with the post are quite different.

image

steveoh avatar Dec 13 '22 04:12 steveoh

This doesn't happen when I just use the firebase sdk so it must be in this package or one of it's dependencies (rxfire).

steveoh avatar Dec 14 '22 04:12 steveoh