I have a FB Like button on my site, but when it gets clicked, the resulting “summary of this link” text on your FB feed is erroneous.
I generated the like button when there was nothing on the site’s present URL (I had just registered it). Now, when I click “Like”, the text description that shows up in my Facebook feed is this:
"Learn about HAIKU.LI from this free business profile provided by Network Solutions"
That text shows up underneath the title of my page (which is displaying correctly as "Find Haiku in Your Tweets").
How do I clear the default description text? I’ve tried regenerating the button to no avail. That Network Solutions text is certainly not present on my site. Is there some kind of og tag for description?
Edit
The url for the page is:
The html for the button:
.fb-like{"data-font" => "arial", "data-href" => "http://www.haiku.li", "data-layout" => "button_count", "data-send" => "false", "data-show-faces" => "false", "data-width" => "100"}
The meta tags in the head section:
%meta{:content => "Find Haiku In Your Tweets!", :property => "og:title"}/
%meta{:content => "website", :property => "og:type"}/
%meta{:content => "http://www.haiku.li", :property => "og:url"}/
%meta{:content => "http://www.haiku.li/assets/logo.png", :property => "og:image"}/
%meta{:content => "Haiku.li", :property => "og:site_name"}/
%meta{:content => "[my FB id]", :property => "fb:admins"}/
Everything seems to work as it should except that it adds in the extra description.
The text (and image, title, etc) that are used in the facebook stories are extracted from the page itself.
Facebook scraps the url and use the returned data in order to get the info it needs to create the story.
You can control that data of course by using the Open Graph Protocol and defining the og tags.
You can use the Debugger (AKA Linter) to check what data is returned from your site and how facebook “sees” it.
In the Like Button documentation is says this (which is important and people sometimes miss it):
Edit
Ok, I think I know what’s the problem.
Looking at your code you neither have the description meta tag nor the og:description tag, because of that facebook is probably taking “default description provided by my domain registrar”.
You should add both tags.
It’s a guess.