the gpt i’m trying to build needs to access the generated image for further processing via my api.
the gpt thinks it’s imageURL is something like this: https://cdn.openai.com/dalle/bNuGJfFtHekak6HC.png
, but that returns:
<Error>
<Code>BlobNotFound</Code>
<Message>
The specified blob does not exist. RequestId:34320926-f01e-001b-099f-6331d6000000 Time:2024-02-20T01:55:47.5846095Z
</Message>
</Error>
if i right-click the image to try to get the link manually, the link is now at the domain: https://files.oaiusercontent.com/file-somethingsomething?se=2024-02-20T02%3A16%3A12Z&sp=r&sv=2021-08-06&sr=b&rscc=max-age%3D31536000%2C%20immutable&rscd=attachment%3B%20filename%something-something.webp&sig=something
, which i can download but not open in a new tab.
either way, how do i get a public URL to a generated image? it’s ok if the link times out after a short period of time, i just need it temporarily to pass along to the next API.