Facebook标签 - Vimeo iframe视频停止工作

时间:2013-10-25 03:08:13

标签: html facebook iframe video vimeo

我在Facebook上创建了一个应用程序,它有一些简单的HTML,包括一个包含vimeo视频的iframe。这个应用程序在过去一年左右都运行良好,但突然之间视频没有显示出来。我已经仔细检查了页面的代码(制作了一个独立的html页面并且工作正常)

有人知道Facebook是否更改了关于iframe或嵌入视频的政策?如有任何建议?

这是应用程序的链接(在Facebook上):https://www.facebook.com/LastFrontierHeli/app_367384316627957

以下是该应用的代码:

    <html xmlns="http://www.w3.org/1999/xhtml">
  <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Welcome</title>
<style type="text/css">
  <!--
  .container {
    height: 810px;
    width: 841px;
  }
  -->
  </style>
</head>

  <body>
<div class="container">
<img src="http://www.lastfrontierheli.com/images/facebook/facebook_welcome_header.jpg" alt="header" />
<img src="http://www.lastfrontierheli.com/images/facebook/facebook_welcome_vid_left.jpg" alt="vid left" />
<iframe src="http://player.vimeo.com/video/30746400?byline=0&amp;portrait=0" width="658" height="370" frameborder="0"></iframe>
<img src="http://www.lastfrontierheli.com/images/facebook/facebook_welcome_vid_right.jpg" alt="vid right" />
<img src="http://www.lastfrontierheli.com/images/facebook/facebook_welcome_content.jpg" alt="content" /><a href="http://www.lastfrontierheli.com" target="_blank">
<img src="http://www.lastfrontierheli.com/images/facebook/facebook_welcome_button_website.jpg" alt="website button" border="0" /></a>
<a href="http://www.facebook.com/LastFrontierHeli" target="_parent">
<img src="http://www.lastfrontierheli.com/images/facebook/facebook_welcome_button_facebook.jpg" alt="facebook button" border="0" /></a>
</div>
</body>

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

要了解有什么问题,我只是使用了Chrome开发者工具, 在Console下你可以看到这一行:

  

[已冻结] https://367384316627957.iframehost.com/966373?signed_request=incxTmuyY3_vzi处的页面... NlciI6eyJjb3VudHJ5IjoiaWwiLCJsb2NhbGUiOiJlbl9VUyIsImFnZSI6eyJtaW4iOjIxfX19 从<{strong> http://player.vimeo.com/video/30746400?byline=0&portrait=0运行不安全的内容。

因此,你不知道 - facebook要求加密所有数据(通过SSL提供)。

只需将您的iframe从http://player.vimeo ..更改为http * s *://player.vimeo 它应该工作正常。