You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this could be why. I believe that the customId's only work for signed uploads. I'll double check though as cloudinary's own documentation has a level of interpretation.
Custom public ID to assign to a single uploaded asset. If not specified, either
a randomly generated string or the original file name is used as the public ID
according to the unsigned upload preset. To ensure secure usage, overwriting
previously uploaded assets sharing the same public ID is not supported (unless
you also include "overwrite = true" in the upload preset).
Default: null.
Example: profile_11002
I have the following const set:
const uuid4 = uuid.v4();
and in the widget I have:
customPublicId={uuid4} use_filename={false}
When the file uploads it's using the filename, not uuid4, as the public ID.
The text was updated successfully, but these errors were encountered: