I'm working on a website that displays a list of products and each of them displays a facebook like button. During testing I noticed that every time I hit the like button my facebook wall was not showing any info about my site or the product's image so I figured this had to do with facebook's Open Graph meta tags.
Since I'm creating the web pages for the products dynamically using Spring MVC and Apache Tiles, how do I insert these meta tags dynamically??
<meta property="og:title" content="book for sale" />
<meta property="og:type" content="product" />
<meta property="og:url" content="http://www.mysite.com/product/1111" />
<meta property="og:image" content="http://www.mysite.com/pics/230980048.jpg" />
<meta property="og:site_name" content="mysite.com" />
<meta property="fb:admins" content="31536131" />
Is this something that needs to be done on tiles templates (tiles-definitions)?
I was thinking at first that I needed to write them on the spring controller using the HttpServletResponse parameter.
Then I thought there was a jsp tag that could insert meta tags, sort of like <jsp:meta>
As you may see I'm lost, any help would be appreciated.