如何阻止网络应用程序在YouTube中打开



我正在为iPad制作一个移动网络应用程序。我从谷歌网站上获得了代码以添加YouTube订阅按钮:

<script src="https://apis.google.com/js/platform.js"></script>
<div class="g-ytsubscribe" data-channelid="UCICWAtoGya9rQRPRSseDpjw" data-layout="full" data-count="default"></div>

每当我打开网络应用程序时 - 在应用程序加载之前并且没有提示 - 它都会打开YouTube应用程序。请问谁能帮我?

我在 http://mazes.ml/web-app 用代码制作了一个新的网络应用程序:

<!DOCTYPE html>
<html>
<head>
<title>YouTube Button</title>
<script src="https://apis.google.com/js/platform.js"></script>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="YouTube Button">
</head>
<body>
<div class="g-ytsubscribe" data-channelid="UCICWAtoGya9rQRPRSseDpjw" data-layout="full" data-count="default"></div>
</body>
</html>

实际上,这是基于YouTube的代码。Google可以验证按钮是否确实被有意按下(而不是通过您网站上的脚本(的唯一方法是对用户进行身份验证,在许多移动浏览器上,当用户从您的网站定向到youtube时,它会自动打开关联的应用程序。

相关内容

  • 没有找到相关文章

最新更新