English 中文(简体)
接触PHP
原标题:Login to google with PHP
  • 时间:2012-04-23 20:27:13
  •  标签:
  • php

是否有办法预示您的用户名和密码,这样,当有人点击链接时,就会把他们拖到记账上? 我非常需要知道如何安排这一联系,但如果这种联系是不可能的,而且我需要使用曲线,我可以(也想知道改用现场拖拉的代码)。

This almost works (replacing LOGIN with my username and PASSWORD with my password), but I still have to enter the password and hit submit: https://www.google.com/accounts/ServiceLoginAuth?continue=http://google.com/voice&service=grandcentral&Email=LOGIN&Passwd=PASSWORD&null=Sign+in

最佳回答

你们可以这样向谷歌 log。 你们最接近的人正在建立一个有隐藏的田地的表格,这些田地把其服务器上填满,但它们却检查了推荐人头,这样就没有工作了。

问题回答

如果能够发挥作用,你就只能将电子邮件/密码存放在一阵列中,并设计一个URL,然后将用户转至URL。

It s a bad practice to hardcode passwors in scripts/programs. It s also a bad practice to send passwors in URL i.e. using GET method.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签