We are getting this error in our pages. We can do a simple check and implement the request.scheme(which we are in the process of implementing) but w3.org states that resources can have relative schemes. Isn't og:image is similar to an image tag and should support all the features of an image tag.
Error:
Object at URL 'http://www.slideshare.net/jessedee/100-bullet-points-from-cannes-lions-2012' of type 'slideshare:presentation' is invalid because the given value '//cdn.slidesharecdn.com/100bulletpointsfromcanneslions12-120626070638-phpapp02-thumbnail-2?1340766735' for property 'og:image:url' could not be parsed as type 'url'.
The value for Facebook's og:image meta tag can't be protocol relative, it must be absolute
Related
Facebook doesn't get correct description for an image on share for URLs that are DNS web-alias.
See http://anon-chat.thibaultjanbeyer.com/
Inferred Property The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags.
The Facebook object debugger gives:
Based on the raw tags, we constructed the following Open Graph properties
og:url http://anon-chat.thibaultjanbeyer.com/
og:type website
og:title anon-chat.thibaultjanbeyer.com
og:description Your user agent does not support frames or is currently configured not to display frames. However you may visit the page that was supposed to be here
og:updated_time 1435088030
Is there a workaround for this?
Your URL does not have any Open Graph tags that are visible to our crawler (see here).
Add the tags and you should be fine. If you have no control over the HTML at http://anon-chat.thibaultjanbeyer.com/, you're out of luck.
I have a page Yummitube . If I share any link of the webpage on Facebook than no image thumb appears. My og:image is ok.
Let's say url is: http://www.yummitube.com/?id=936
Meta og:image is the folowing:
The image is accesible.
Moreover Facebook linter shows that my og:image is ok.
but what I paste http://www.yummitube.com/?id=936 in facebook no thumb appears.
Any ideas? I tryed to use different sizes of image but that did not help me.
Your link in Open-graph debugger: https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.yummitube.com%2F%3Fid%3D936
Problem found: The parser's result for this metadata did not match the input metadata. Likely, this was caused by the data being ordered in an unexpected way, multiple values being given for a property only expecting a single value, or property values for a given property being mismatched. Here are the input properties that were not seen in the parsed result: 'fb:admins'
Two solution found:
Trim admins string because most probably it is generating some extra
space
Provide og:type
I have a problem..the Debugger is returning this error:
Errors That Must Be Fixed
More Than One OG URL Specified:
More Than One OG URL Specified Object at URL 'http://www.health-alternative.com/' of type 'website' is invalid because it specifies multiple 'og:url' values: http://www.health-alternative.com/, http://health-alternative.com/.
Could you tell me what it can be?
Thank you
When called without the “www” prefix, http://health-alternative.com/, your site automatically redirects to the version with www, http://www.health-alternative.com/
But your meta tags say, the version without www is the correct one:
<meta property="og:url" content="http://health-alternative.com/">
So you should decide on one of the two options … right now, you are contradicting yourself in what the page actually does and what the meta tag says.
I have a facebook 'Send' button that is supposed to allow a users to post one of my blog posts on my rails-based site to a facebook feed.
This is the real url that I'm trying to post:
http://50.62.12.222/projects/1/blog_posts/1/blog_post_replies
At first I thought it might be an issue with authentication for that particular object's 'show' action. Once I fixed that and verified that the page does not require authentication, I am baffled about what to try next.
neither the route <%= project_blog_post_blog_post_replies_url(#project, b) %> or the rendered url(above) work. And the error I'm getting in equally ambiguous:
"We encountered the following error when sending your message:"
EDIT: And I get the same failure if I try this url on the facebook developer site as well (where it gives you the paste code for the button).
Try setting og meta tags too. Although the are not required fields, but facebook might be failing initial requests for Send button hit. Consider following suggestions
Inferred Property: The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property: The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property: The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.
Tiny og:image: All the images referenced by og:image must be at least 200px in both dimensions. Please check all the images with tag og:image in the given url and ensure that it meets the minimum specification.
Once you are done, go to http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2F50.62.12.222%2Fprojects%2F1%2Fblog_posts%2F1%2Fblog_post_replies and ensure you are doing everything fine.
I have set Facebook metadata to let Facebook get the right data when sharing. But i am having troubles with the images. I have used the url linter tool from Facebook , but i dont know where is the error:
http://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.agendaburgos.com%2Fagenda%2Ffiesta-curpillos-parral.aspx
The warning it shows is this:
The parser's result for this metadata did not match the input metadata. Likely, this was caused by the data being ordered in an unexpected way, multiple values being given for a property only expecting a single value, or property values for a given property being mismatched. Here are the input property =>content pairs that were not seen in the parsed result: og:image:url => http://www.agendaburgos.com/Imagen.ashx?url=uploads%5ceventos%5cfiestas-del-curpillos-en-el-parral_5417.jpg&h=200&estirar=true
The link from og:image is right, where is the problem?
It appears if the Facebook Debug Tool doesn't like the URL to your image. You are using a script to generate a resized version of the uploaded image. Try referencing the original image in your og:image tag and see if it helps:
<meta property="og:image" content="http://www.agendaburgos.com/uploads/eventos/fiestas-del-curpillos-en-el-parral_5417.jpg" />
Remember to scrape the page again to update Facebook's cache.
I think the reason you're getting this warning may be due to the way you are building the image URL using an ASHX handler.
Don't bother with the dynamic resize. Facebook will handle that once they get the image. Just send your image at full resolution to Facebook.
You also have a problem that you aren't explicitly defining an og:description tag. If you can, you should repeat your description tag as og:description.