for the one in the second image you can sort this in fb admin i think it under soccial fan box page url or somthing been time since i looked at it
Yea it was in the Admin under social Facebook page url. I was still using my old FB url instead of the new. Guess I forgot to update it. Got it updated and that error went away and it works fine.
fo the first image
the tiny og:image tell you whats wrong the image needs to be at least 200px again you can chnage this in fb admin open grath to change the image
Yea, it's small as it's below 200px. I knew about that one, that's a easy fix.
meta with name instead of property
<meta name="copyright" content="© Copyright 2012 by Weather Connection" />
<meta name="author" content="Weather Connection" />
<meta name="language" content="English" />
<meta name="publisher" content="Weather Connection" />
<meta name="audience" content="Weather" />
you have this in you template i have a feeling t will conflict with fb tags as there strict <meta property instead of <meta name this may also be why you get the og:image errors
In the FacebookHooks.php I noticed this code for the meta, it has nothing about author, does there need to be? Would that help because it's looking at the normal meta tags for that name? What's a work around for that? Any that can be added?
$open_graph = '
<meta property="fb:app_id" content="'.$modSettings['fb_app_id'].'" />
<meta property="og:type" content="article" />
<meta property="og:locale" content="'.(empty($modSettings['fb_admin_intern1']) ? $modSettings['fb_admin_intern1'] : 'en_US').'" />
<meta property="og:title" content="'.$context['page_title_html_safe']. '" />
<meta property="og:image" content="'.(!empty($modSettings['fb_app_image']) ? $modSettings['fb_app_image'] : $settings['default_theme_url'].'/images/topic/veryhot_post.gif').'" />
<meta property="og:description" content="'.$context['page_title_html_safe'].'" />
<meta property="og:url" content="'.(empty($context['current_topic']) ? $scripturl : $scripturl .'?topic='.$context['current_topic'].'.0').'" />';
-Thanks!