user1074378
user1074378

Reputation: 1445

How to pass meta description through Facebook like button without og tags?

Is it possible to pass the meta description through the Facebook like button without using the og tags? http://developers.facebook.com/docs/reference/plugins/like/

I have this tag currently

<meta name="description" content="description here" />

but i don't have access to update it to

<meta property="og:description" content="description here" />

I'd like to pass "description here" along with the title and URL. Thanks for any help.

Upvotes: 2

Views: 2631

Answers (1)

Chris Disley
Chris Disley

Reputation: 1355

Have you considered the JavaScript SDK? Specifically it's worth a look at FB.ui which can be used to create the same interface as the like plugin but you can configure all of the fields. More info available at http://developers.facebook.com/

Upvotes: 2

Related Questions