For a single blog / article that has multiple tags how would add the Facebook Open Graph data?
This seems like it would be the most logical way to do it. However it reports that it's incorrect in the Facebook debugger:
<meta property = "article: tag" content = "advocate, charity, crowdfunding, Healthcare, hospitals, Medical Bills, Medicare, negotiate, uninsured" >
Adding the same above like this seems to be correct, but it seems ridiculous:
<meta property="article:tag" content="advocate" />
<meta property="article:tag" content="charity" />
<meta property="article:tag" content="crowdfunding" />
<meta property="article:tag" content="Healthcare" />
<meta property="article:tag" content="hospitals" />
<meta property="article:tag" content="Medical Bills" />
<meta property="article:tag" content="Medicare" />
<meta property="article:tag" content="negotiate" />
<meta property="article:tag" content="uninsured" />
What is the correct way to do this? Is there a more "optimized" way of writing the above?