我试图通过我自己的网站自动登录我的电子邮件。这是我到目前为止所管理的。我不想将我的数据保存在我的计算机上,因为它是共享的。
<?php
$src=file_get_contents('https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=http://mail.google.com/mail/&scc=1<mpl=default<mplcache=2');
?>
<html>
<body>
<?php echo $src; ?>
<script>
window.onload = function() {
document.getElementsByName('Email').item(0).value='testusername@gmail.com';
document.getElementsByName('Passwd').item(0).value='testpassword';
document.getElementsByName('signIn').item(0).click();
void(0);
}
</script>
</body>
</html>
为什么这不起作用?有任何想法吗?我是网络编程的新手,所以任何帮助或建议将不胜感激。