I am using below code on my site.When I try to share on facebook , it always pics my meta keywords content and not picking my og:descption . Is there any way I can make facebook to pic my og:description ?
<META NAME="Description" CONTENT="Are you ready to take risks or are you more comfortable with safe rewards? Heres how to know whether you are suited for a corporate job or start-up.">
<META NAME="Keywords" CONTENT="interview techniques,interview answers,sample interview questions,job interview,interview questions,interview tips,interview techniques,behavioral interview,phone interview,interview skills,interviews">
<meta property="og:title" content="Are you suited for a startup or a corporate job?" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://media.monsterindia.com/cmsimages/1454311052.jpg" />
<meta property="og:site_name" content="Job Hunt on Monster" />
<meta property="og:description" content="Are you ready to take risks or are you more comfortable with safe rewards? Here's how to know whether you are suited for a corporate job or start-up."/>
Try removing apostrophe (') from your (Here's) word in og:description content text ... hope this helps
Related
I have a job portal website and on that I have a facebook button named as share in fb. I want that when user clicks on that button the that specific job description of my webpage should share on his wall.
<a rel='nofollow' href='http://www.facebook.com/share.php?u=http://testing.com/current_openings.php?JobId=".$jobiid."' target='_blank'>share in fbk</a>
Above link go to share page,but its content is coming from webpage about us page,not specific content.
Set the meta tags for each site you want to be shareable.
Put them in the HTML Header like this
<meta property="og:url" content="http://www.nytimes.com/2015/02/19/arts/international/when-great-minds-dont-think-alike.html" />
<meta property="og:type" content="article" />
<meta property="og:title" content="When Great Minds Don’t Think Alike" />
<meta property="og:description" content="How much does culture influence creative thinking?" />
<meta property="og:image" content="http://static01.nyt.com/images/2015/02/19/arts/international/19iht-btnumbers19A/19iht-btnumbers19A-facebookJumbo-v2.jpg" />
The properties include descriptive meta-data about the article that we specifically want to present when
Facebook image cache works on meta tags so i was given meta tags
So i am trying to append to head part it was done but image cache not working..
Here is the code :
$("head").append('<meta property="og:type" content="article" />
<meta property="og:title" content="When Great Minds Don’t Think Alike" />
<meta property="og:description" content="How much does culture influence creative thinking?" />
<meta property="og:image"content="'+item.snippet.thumbnails.high.url+'"/>');
I've implemented og:see_also into my posts, but when they're liked, no additional webpages appear.
Is there specific criteria that needs to be met (i.e. do they require a specific og:type)?
Must they be placed in a specific place within the Open Graph Meta Tag order?
Here's how they're set up:
<meta property="og:see_also" content="http://mywebsite.com/article1/">
<meta property="og:see_also" content="http://mywebsite.com/article2/">
They're displayed appropriately in the FB Debugger Tool. I'm just wondering if perhaps I may be doing something wrong, or if the see_also articles will only appear intermittently?
Here's the full code:
<meta property="og:site_name" content="SITE NAME">
<meta property="og:url" content="http://THEWEBPAGE.COM">
<meta property="og:title" content="TITLE">
<meta property="og:image" content="http://IMAGE-HERE.com">
<meta property="og:image:secure_url" content="https://IMAGE-HERE.com">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:description" content="DESCRIPTION">
<meta property="og:see_also" content="http://mywebsite.com/article1/">
<meta property="og:see_also" content="http://mywebsite.com/article2/">
The official OpenGraph protocol page doesn't mention anything about og:see_also, and Facebook's documentation doesn't do anything with it.
However, Pinterest mentions it, which suggests it may one of the og: tags Pinterest has extended from the standard. The only description we get is:
URL pointing to other related articles from the same domain. Up to 6 og:see_also tags can be provided.
Presumably, this tag would only have an effect when Pinterest users "pin" your page and get a "Rich Pin" out of it, which is a feature you'd have to apply for.
I'm running a Joomla 3.4 CMS for my website and I recently enabled gzip and caching in order to speed it up, but now when I post a link to any page on my site from Facebook, it doesn't grab any of the information I'd like to see there (photo, page title, text/description/meta). After doing a bit of research I learned that gzip is known for causing problems with Facebook's bot, so disabled gzip and retested, but it didn't seem to make a difference. I found a plugin (https://github.com/dgt41/facebookfix) and installed it, but that hasn't helped either. I'm at a loss at this point. I'm wondering if maybe something else is going on, but I can't see it. My website is here.
These are all OpenGraph Social Meta Tag settings you have to do. Try these inside the <head> section of every page. You can use other extension also to do this automatically for you.
<meta property="og:site_name" content="My Website Name"/>
<meta property="og:title" content="Your Title Here"/>
<meta property="og:description" content="Your Description Here" />
<meta property="og:image" content="http://www.example.com/images/image.png" />
<meta property="og:locale" content="en_US"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="http://www.example.com/blog/article-name"/>
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.