我有一段代码,谷歌登录它在下面给出。它在普通的php中包含一个文件。代码如下。
require 'openid.php';
try {
# Change 'localhost' to your domain name.
$openid = new LightOpenID('http://s396001438.onlinehome.us/test2/');
if(!$openid->mode) {
if(isset($_GET['login'])) {
$openid->identity = 'https://www.google.com/accounts/o8/id';
header('Location: ' . $openid->authUrl());
}
?>
<form action="?login" method="post">
<button>Login with Google</button>
</form>
<?php
} elseif($openid->mode == 'cancel') {
echo 'User has canceled authentication!';
`enter code here`} else {
echo 'User ' . ($openid->validate() ? $openid->identity . ' has ' : 'has not ') . 'logged in.';
}
}catch(ErrorException $e) {echo $e->getMessage();}
答案 0 :(得分:0)
此代码完全错误。
答案 1 :(得分:0)
此代码的正确位置是供应商或将其转换为插件(对于cakephp 2.0)。
使用cakephp 1.3,你应该把它放在供应商和文件夹中,然后执行
App::import();
请查看食谱以查看相同的用法示例。 http://book.cakephp.org/1.3/en/view/943/Loading-Vendor-Files
App类是非常有用的实用程序库。 http://book.cakephp.org/1.3/en/view/933/The-App-Class