Right Facebook Open Graph Protocol into WordPress theme?

but get the first image, how i get the “featured image” of each of post?

Use get_the_post_thumbnail(). You simply need to pass it the ID of the post; e.g.:

<?php
global $post;
$post_thumbnail = get_the_post_thumbnail( $post->ID );
?>