Set Canonical URL to GIF for Facebook

I learned that OG:URL tags can be the workaround and can work completely away from canonical links. That said I had to clean out an existing opengraph url that pointed to OG:URL and create a new one based on the posted thumbnail of the gif.

This was added to my function.php file

add_filter( 'wpseo_opengraph_url' , '__return_false' ); 
add_action('wp_head', 'dgsoft_fb'); function dgsoft_fb(){
if( is_single() ) {
         echo '<meta property="og:url" content="'. get_the_post_thumbnail_url(get_the_ID(),'full')   .'" />';
       } }