如何使用会话和重定向与facebook og属性



我想在Facebook上分享一个带有图像的页面。我使用了下面的代码,它对于静态图像非常有效。

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:og="http://ogp.me/ns#"
  xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>MyExample</title>
<meta property="fb:app_id" content="xxxxxxxxxxxxx" />
<meta property="og:title" content="This is my example"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://mywebsite.com/mypage.php"/>
<meta property="og:image" content="http://mywebsite.com/images/myimage.jpg"/>
<meta property="og:site_name" content="Mywebsite"/>
</head>
<body>
</body>
</html>

我在这里传递的图像名称是静态的。如何向此页面提供动态图像?我可以使用 php 会话吗?如何?另外,如果有人点击我的帖子,我想将用户重定向到另一个网址。我该怎么做?

控制器传递动态数据,以便在元属性中查看和打印该数据

最新更新