I have an image that is created at runtime on my website and I display it in html using
<img src="data:image/jpeg;base64,<!-- base64 data -->" />
Now I want Facebook to get this image, but if I do the same for the og: image meta tag, the facebook debugger will give me an error. Any solution?
<meta property='og:image' content='data:image/jpeg;base64,<!-- base64 data -->'/>
Of course, I would like to avoid the constant saving of files, since they are always different, and it would quickly overflow.
source share