php - Facebook like button disregarding open graph meta data -


i have set page proper og meta data (title, type, url, image, site_name, admins, , description). i'm routing through handler populates description , link automatically (there several different things on page). facebook's url linter pulls proper data when enter url, when try it:

1) asks confirmation (i think it's assuming i'm trying likejack).

and

2) once confirm disregards meta data knows has , posts on profile data guesses core index title , first p tag instead of data that's filled in link handler.

i know method works because coworkers have implemented elsewhere. suggestions appreciated.

my meta data:

<meta property="og:title" content="foo"/> <meta property="og:type" content="article"/> <meta property="og:url" content="https://foo.bar"/> <meta property="og:image" content="https://foo.bar"/> <meta property="og:site_name" content="foobar"/> <meta property="fb:admins" content="1111111"/> <meta property="og:description" content="foo bar"/> 

like button:

<fb:like href="https://foo.bar" send="false" layout="box_count" width="100" show_faces="false" font=""></fb:like> 

don't know if you've tried or not, see http://developers.facebook.com/tools/lint/

try parse page, if there error meta tags tool report it..


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -