我应该把图像放在哪里,以便我可以将其用作 og:image?
Where should I put an image so that i can use it as an og:image?
我想使用 <meta property="og:image" content="" />
中的图像,但我的文件中有该图像。
我知道我们不能在这里使用相对link。
<meta property="og:image" content="img/socialImage.png" />
那我应该把这张图片放在哪里,这样我才能在meta标签中使用它。如何将我的图像用作 URL?
一旦您的应用程序托管在域上并可公开访问,您的图像将可以通过网络爬虫访问。此时可以在 og:image
meta 中拾取它。您需要做的就是在您的应用程序上公开托管图像,并将完整的 URL 放入元标记中。例如<meta property="og:image" content="https://example.com/socialImage.png" />
我想使用 <meta property="og:image" content="" />
中的图像,但我的文件中有该图像。
我知道我们不能在这里使用相对link。
<meta property="og:image" content="img/socialImage.png" />
那我应该把这张图片放在哪里,这样我才能在meta标签中使用它。如何将我的图像用作 URL?
一旦您的应用程序托管在域上并可公开访问,您的图像将可以通过网络爬虫访问。此时可以在 og:image
meta 中拾取它。您需要做的就是在您的应用程序上公开托管图像,并将完整的 URL 放入元标记中。例如<meta property="og:image" content="https://example.com/socialImage.png" />