У меня есть кусок кода, который делает вход в Google, он указан ниже.Это в обычном 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();}