我想创建一个带有表单的页面来更新用户帐户详细信息(例如密码)。 我已经为我的应用程序获得了client_id和client_secret,我也已经在管理仪表板上为我的谷歌应用程序激活了API。
<html>
<head>
<title>Change password page</title>
</head>
<body>
<h1>Change Password</h1>
<form method="POST" action="process.php">
Username: <br />
<input type="text" name="username" /> <br />
Old Password: <br />
<input type="password" name="password" /> <br />
<br />
New Password: <br />
<input type="password" name="newpassword" /> <br />
Confirm Password: <br />
<input type="password" name="confirm_newpassword" /> <br />
<br />
<input type="submit" name="btn-submit" value="Change Password" />
</form>
</body>
来自link,我知道首先我需要对我的网页进行身份验证,
//process.php
set_include_path("../src/" . PATH_SEPARATOR . get_include_path());
require_once 'Google/Client.php';
// authenticate
$client = new Google_Client();
$client->setClientId(my_client_id);
$client->setClientSecret(my_client_secret);
$client->setRedirectUri(urn:ietf:wg:oauth:2.0:oob);
我不知道我应该添加什么来创建谷歌请求,我来this link,但这对我来说还不够清楚。