如何在meteorjs上用youtube发帖?

时间:2015-04-27 09:39:25

标签: javascript iframe meteor youtube-api

我试图用youtube视频发帖。每个帖子都有一个关于youtube视频的链接,就像那样:

{
   title: "Some video",
   link: "http://www.youtube.com/watch?v=XfWnITmT1Ws"
}

和模板帖是

<template name="post">
  <h1>{{title}}</h1>
  <iframe width="420" height="315" 
   src="{{link}}" frameborder="0" allowfullscreen></iframe>
</template>

但它不起作用。错误是

Refused to display 'http://www.youtube.com/watch?v=gpEgXOgRQ8w'
in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
有人见过吗?我该怎么办?

1 个答案:

答案 0 :(得分:2)

如何使用Youtube API显示视频?您实际上是尝试使用iframe将Youtube视频集成到视频页面,而youtube则提供嵌入代码:

<iframe width="420" height="315" src="https://www.youtube.com/embed/{{video_id link}}" frameborder="0" allowfullscreen></iframe>

请注意,您必须注册模板助手video_id,将视频链接作为参数并返回视频ID(在此处以粗体显示:http://www.youtube.com/watch?v= gpEgXOgRQ8w

相关问题