gpt4 book ai didi

javascript - 如何防止授权用户将我的网站嵌入到移动应用程序中

转载 作者:行者123 更新时间:2023-12-05 05:35:13 26 4
gpt4 key购买 nike

我最近做了一个网络应用程序,我很惊讶!我在某人的手机上看到它是一个运行良好的移动应用程序,该人只知道 URL,其他一无所知。首先,我认为该人使用的可能是 Iframe,所以我试图阻止该网站被加载一个 iframe,但它仍在该移动应用程序上显示。请问我该怎么办?

最佳答案

您可以获得操作系统版本,如果是 Android 或类似的东西,则停止其余功能。您可以在“onLoad”中或稍后使用 javascript 执行此操作。

function getOS() { 

$user_agent = $_SERVER['HTTP_USER_AGENT'];

$os_platform = "Bilinmeyen İşletim Sistemi";
$os_array = array(
'/windows nt 10/i' => 'Windows 10',
'/windows nt 6.3/i' => 'Windows 8.1',
'/windows nt 6.2/i' => 'Windows 8',
'/windows nt 6.1/i' => 'Windows 7',
'/windows nt 6.0/i' => 'Windows Vista',
'/windows nt 5.2/i' => 'Windows Server 2003/XP x64',
'/windows nt 5.1/i' => 'Windows XP',
'/windows xp/i' => 'Windows XP',
'/windows nt 5.0/i' => 'Windows 2000',
'/windows me/i' => 'Windows ME',
'/win98/i' => 'Windows 98',
'/win95/i' => 'Windows 95',
'/win16/i' => 'Windows 3.11',
'/macintosh|mac os x/i' => 'Mac OS X',
'/mac_powerpc/i' => 'Mac OS 9',
'/linux/i' => 'Linux',
'/ubuntu/i' => 'Ubuntu',
'/iphone/i' => 'iPhone',
'/ipod/i' => 'iPod',
'/ipad/i' => 'iPad',
'/android/i' => 'Android',
'/blackberry/i' => 'BlackBerry',
'/webos/i' => 'Mobile'
);

foreach ( $os_array as $regex => $value ) {
if ( preg_match($regex, $user_agent ) ) {
$os_platform = $value;
}
}
return $os_platform;
}

你也可以检查浏览器

https://gist.github.com/Balamir/4a19b3b0a4074ff113a08a92908302e2

关于javascript - 如何防止授权用户将我的网站嵌入到移动应用程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73555767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com