hope you can help me...

I want to have a page with facebook metatags, like:

<meta property="og:title" content="TITULO" />
<meta property="og:type" content="website" />       
<meta property="og:image" content="http://profile.ak.fbcdn.net/hprofile-ak-snc4/277072_61646342824_993843268_n.jpg" />      
<meta property="og:url" content="http://www.clarin.com" />

and the problem is that instead of showing the descriptions, titles and images that I define in the metatags of my page, the facebook like box is generated with the url defined in my og:url. I was reading documentation and it seems that it should be in that way.

But I still want the facebook like box generated only with the metatags of my page, and not with the url defined in og: url.

is it possible? someone has done?

link|improve this question
feedback

2 Answers

og:url basically tells our scraper "ignore anything on this page, and scrape this url instead" So it's doing exactly what it's supposed to do. If you want the like button to point to a different url, use the href parameter and have it point to a different url.

See https://developers.facebook.com/docs/reference/plugins/like/ for more information.

link|improve this answer
thanks you so mucho for your reply. it helps me su much. but, i still have a problem. look the following url: republicarayada.com.mx/test2.php if you put it on the facebook object debugger, it's ok. it displays the correct information for my open graph tags. but if you put it in the browser, and click into "like" button, you can see it's generating info from the href parameter! i don't understand why. can you help me? – Juan Pérez Oct 20 '11 at 14:56
Because you're telling the like button to pull the information from the url in the href parameter. – Jeff Sherlock Oct 20 '11 at 18:35
thank you again jeff. but i can't understand. i want to create the like box from my og metatags; but i want to recommend or like another URL. do you understand me? so I put my desired metatags info on my URL1 (to build the box) and I need to tell the fb like button to recommend for another (URL2). is it possible? how can I do? pleeeeeease! – Juan Pérez Oct 20 '11 at 18:55
so, it works like a canonical link? – andufo May 21 at 14:28
@andufo I believe so, I don't know why they didn't use that instead. – Shane Reustle 7 hours ago
feedback

you can put the like button in an iframe. Furthermore, that iframe may or may not need to be filled by setting a src attribute. I would try adding the like button code as innerHTML, and then try a separate file to set the src to.

It would look something like this:

<iframe><place like code here></iframe>

When that doesn't work, place the like code in a separate file, and set the src of the iframe to that file. Let me know if you have quesitons

link|improve this answer
I forgot a downfall: when the like button generates its post to facebook box, it won't be visible because it's in the context of the iframe. However, this posting box usually doesn't work well for me if it even does, and I've only personally found myself using it once or twice ever. – Devin G Rhode Oct 20 '11 at 3:47
thank you anyway! – Juan Pérez Oct 20 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.