facebook like button in my website was working great for maybe 1 month yesterday i found it broken
i check it by facebook debug tool it gives me:
http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fmezo.me%2F
So any one know how to fix it ?
meta tag is missing , use something like below
<meta property="og:type" content="website" />
<meta property="og:url" content="http://womenwants.me/chat1/" />
<meta property="og:title" content="Fun Group Chat" />
<meta property="og:image" content="http://www.rijewelers.com/product_images/uploaded_images/chat-icon.jpg" />
Related
I am trying to create meta tags for Facebook sharing option with the open graph protocol. I have different tags like in the following snippet:
<meta property="og:type" content="business.business" />
<meta property="og:url" content="http://www.mywebsite.com/journal" />
<meta property="og:image" content="http://mywebsite.com/images/stories/beautifulimagelikeyou.jpg" />
<meta property="og:site_name" content="My website" />
<meta property="og:description" content="Description of my wonderful page" />
I am looking for a meta tag to add the scheduled date of an event (e.g. a concert) and there seem to be nothing other than xxx:release-time or xxx:published-time (checked on the documenation) and ideally I am looking to add something like
<meta property="og:date" content="2016-06-06" />
or
<meta property="event:date" content="2016-06-06" />
has anyone ever used this kind of tag? because both og docs and facebook docs do not seem to include this kind of tag, and I don't know how to go about it. thank you.
I use Open Graph tags to share the site. On the desktop does't have problem, but if I use a mobile device is not working properly. Do not take my description and picture. Anyone had any similar problem? How to become equally to both (mobile and desktop) ?
Here is my OG meta tags:
<meta property="og:url" content="http://www.mywebsite.com" />
<meta property="og:site_name" content="MyWebSite" />
<meta property="og:image" content="http://www.mywebsite.com/images/image1.jpg" />
<meta property="og:type" content="website" />
<meta property="og:title" content="My web site" />
<meta property="og:description" content="My description !" />
Try adding ?fbrefresh=ANY_RANDOM_NUMBER after your URL.
Like this :
<meta property="og:url" content="http://www.mywebsite.com?fbrefresh=9999" />
you need to use link for og:url not a meta tag
<link property:"og:url" content="http://www.mywebsite.com?fbrefresh=9999">
An easy one I hope, I just can't find the solution online, I am using the following code -
<meta property="fb:admins" content="626317029" />
<meta property="og:title" content="Derby West | Local Business Advertising" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://www.derbywest.co.uk/images/fblogo-derby-west.png" />
<meta property="og:url" content="http://www.derbywest.co.uk/index.php" />
<meta property="og:site_name" content="Local Advertising for Local Business" />
But Facebook insists on use the first image (which is the background) when my site is referenced. Any help?
Works perfectly fine for me, after putting it in the Debugger:
https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.derbywest.co.uk%2Findex.php
If some OG tags don´t work as expected, it´s good to test the URL in the Debugger. It will tell you what´s wrong, and it refreshes the data.
Why doesnt facebook Object Debugger pick up on y og:titls and og:discriptions when it already shows it in my src code???
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta property="og:title" content="Was the moon landing real in 1969" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.opinionfreaks.com" />
<meta property="og:image" content="http://www.opinionfreaks.com/images/logoMain.png" />
<meta property="og:description" content="Was the moon landing real in 1969" />
<meta property="og:site_name" content="opinionfreaks" />
when i run the same link trough Object Debugger it just wont show them....any ideas...
Kind regards
Ronan
What #CBroe said essentially.
Your server needs to be accessible to the public web, or have a exclusion in your blocking rules for the Facebook Crawler. There's more details in the Documentation.
SOLVED: had to dynamicly create the
og:url ...http://www. opinionfreaks.com?user_id =343&title=
...seems to have worked a treat
http://www.malayalam-dictionary.com/ has been developed Facebook open graph tag with the instruction of https://developers.facebook.com/docs/reference/plugins/like/
when share link through facebook, it doesn't working
At the same time google+ shows exactly how expected :)
Here is code
<meta property="og:title" content="A complete Malayalam English Dictionary" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.malayalam-dictionary.com/" />
<meta property="og:image" content="http://www.malayalam-dictionary.com/images/logo.jpeg" />
<meta property="og:site_name" content="malayalam-dictionary.com" />
<meta property="og:description" content="A complete Malayalam dictionary." />
<meta property="fb:admins" content="100001641332681" />
DEMO
It shows up perfectly fine when i put it in facebook.
If the OG Tags don´t work, always check the link in the debugger:
https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.malayalam-dictionary.com%2F
It also refreshes the OG data.