私がしたことは、template.phpにいくつかのコードを追加することでした
function andromeda_preprocess_node(&$variables) {
global $base_url;
$img = $base_url.base_path().path_to_theme()."/logo.jpg";
if($variables['is_front'] != TRUE){
if(isset($variables['node']->field_imagenes['und'][0]['uri'])){
$img = file_create_url($variables['node']->field_imagenes['und'][0]['uri']);
}
else if(isset($variables['node']->field_video['und'][0]['thumbnail_path'])){
$img = file_create_url($variables['node']->field_video['und'][0]['thumbnail_path']);
}
}
$element = array(
'#tag' => 'meta',
'#attributes' => array(
"property" => "og:image",
"content" => $img,
),
);
drupal_add_html_head($element,'facebook_share_image');
それはうまくいっています!