Hey guys i just had an question which i haven't found on the internet.
So basically i am making an twitter card, but the problem here is that the image generator is async. It generates the image by giving numbers or string.
So the code will be something like this:
<meta
name="twitter:image"
content={`https://image-generator/${some_string_or_number_in_here}.png`}
/>
But when i try to make it as twitter card it does not work. Doesn't either show up or it shows an default image.
I know twitter card expects an direct link which already exists, but this one is an node app which generates png's for you.
Any suggestions guys how i can fix this ?