SEO Youtube 视频的 Web 应用程序,错误消息无权访问所请求的 object

Web Application for SEO Youtube Videos, err msg don't have permission to access the requested object

编辑:我重新安装了 Xampp 并再次更改了 httpd.conf 文件,但结果仍然一样,无缘无故

我正在制作一个 SEO youtube 视频网站,过程是按下 link 按钮,网站将进行分析。 第一阶段我要获取title,description,views,like等..然后打印这些数据

第二阶段 然后 API 和 Google 趋势来检查它是否格式正确并且有好的标题和描述然后给他打分100 另外,如果有人可以给我建议或者是否有更好的流程(在寻找最佳 SEO 关键字和 API google 趋势方面)

我在嵌入 Youtube 视频时遇到问题 url 单击按钮后我收到此错误消息 我编辑了 httpd.conf,我在每个 <Directory 中添加了它并且我仍然收到此错误消息

  Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Allow from all
    Require all granted

这是我的 php 代码

$input_Url_data = '';
 /* store the link of the video in a variable */
$input_Url_data  = $_GET['url'] ; 

echo $input_Url_data  ;

echo '<span> <?php echo $input_Url_data ; ?></span>';
$id_position= ''; 
  /*  get the Video ID when the user click the button and make sure it's GET */
if($_SERVER['REQUEST_METHOD'] == "GET" and isset($_GET['submit'])){
      /* triming the link to get the id */
      echo  "</br >" ; 
      echo   $input_Url_data   .  "Button clicked" ;      
      $id_position = strstr($input_Url_data,"=");
      $id_position = trim($id_position, "=" );
  /*  embed the the link by the id */
      echo '<iframe width="560" height="315" src="<?php echo "https://www.youtube.com/embed". $id_position ; ?> "title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>' ;

}           

这是来自 xampp localhost

的网站

你可以试试这个吗?

echo '<iframe width="560" height="315" src="<?php echo "https://www.youtube.com/embed/". $id_position ; ?> "title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>' ;

问题不在于xampp,但在阅读许多文章后,我找到了一种嵌入 Youtube 视频的方法,该方法在属性中使用退格键,我什至不知道为什么,但它确实有效

echo "<iframe  position=\"center\"allow=\"accelerometer\"; gyroscope;  width=\"420\" height=\"315\" src=\"http://www.youtube.com/embed/$ytcode\" frameborder=\"0\" allowfullscreen></iframe>";