Facebook视频分享停止工作,因为它在墙上发布图像而不是视频播放器

时间:2018-03-04 05:26:01

标签: facebook video facebook-opengraph facebook-wall facebook-share

enter image description here我的网站上发布的视频位于我的服务器中,但在我按下FB分享按钮后https://www.sotube.com/player/designers-events-celebs/chanel-fragrances-gabrielle-starring-kristen-stewart 它们不像以前一样被分享为视频,但它们现在在Facebook上显示为图像,而不是像以前那样在Facebook墙上显示的视频播放器。

我们网站后端的代码(见下文)没有改变。所有这些问题都发生在2017年11月,就在我改变了其他3个因素之后。

    1. 我升级了我的joomla版本
    1. 我升级了我的视频播放器组件版本,但他们的编码员说他们的新版本没有任何问题。
    1. 我从PHP 5.4.43升级了我的服务器并改为使用Apache 5.6。将Joomla PHP安全性升级到PHP 5.6。 Apache有一个免费的ssl。所以也许我正在使用我服务器的加密安全级别。您能否确认我的FB视频共享所需的SSL证书的要求[加密类型,如DSA,RSA,SHA等,加密位数[1024或2048]]?我知道我有一个安全页面,请参阅image here

因此,在上述更改之前,我们之前都在工作,所以我们会与您联系,看看会出现什么问题,并请检查我的代码,以防万一我今天应该添加的内容。 谢谢

    $document->addCustomTag('<link rel="canonical" href="' . $instance->toString() . '"/>');
    $document->addCustomTag('<link rel="image_src" href="' . $fb . '"/>');

    $document->addCustomTag('<meta property="og:video:secure_url" content="' . PLAYERPATH . '?baserefJHDV=' . $details1 ['baseurl'] . '&id='. $this->videodetails->id .'&playlist_auto=false&showPlaylist=false&shareIcon=false&email=false&zoomIcon=false&playlist_autoplay=false&videoID=0&embedplayer=true" />');
    $document->addCustomTag('<meta property="og:video" content="' . PLAYERPATH . '?baserefJHDV=' . $details1 ['baseurl'] . '&id='. $this->videodetails->id .'&playlist_auto=false&showPlaylist=false&shareIcon=false&email=false&zoomIcon=false&playlist_autoplay=false&videoID=0&embedplayer=true" />');
    $document->addCustomTag('<meta property="og:video:url" content="' . PLAYERPATH . '?baserefJHDV=' . $details1 ['baseurl'] . '&id='. $this->videodetails->id .'&playlist_auto=false&showPlaylist=false&shareIcon=false&email=false&zoomIcon=false&playlist_autoplay=false&videoID=0&embedplayer=true"/>');
    $document->addCustomTag('<meta property="og:video:type" content="application/x-shockwave-flash" />');
    $document->addCustomTag('<meta property="og:video:width" content="1280"/>');
    $document->addCustomTag('<meta property="og:video:height" content="720"/>');
    $document->addCustomTag('<meta property="og:image" content="' . $video_preview . '"/>');
    $document->addCustomTag('<meta property="og:description" content="' . $video_desc . '"/>');

    $document->addCustomTag('<meta property="fb:app_id" content="111111111111111"/>');
    $document->addCustomTag('<meta property="og:site_name" content="' . $siteName . '"/>');
    $document->addCustomTag('<meta property="og:url" content="' . $instance->toString() . '"/>');
    $document->addCustomTag('<meta property="og:title" content="' . $video_title . '"/>');
    $document->addCustomTag('<meta property="og:type" content="website"/>');

0 个答案:

没有答案