HomeSort by relevance Sort by last modified time
    Searched defs:openid (Results 1 - 2 of 2) sorted by null

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 4 * program logs the user in with Google's Federated Login API (OpenID), fetches
12 * This code makes use of a popup ui extension to the OpenID protocol. Instead
28 require_once 'lib/lightopenid/openid.php';
119 $openid = new LightOpenID(); variable
120 $userId = $openid->identity;
122 // This section performs the OpenID dance with the normal redirect. Use it
125 $openid->identity = 'https://www.google.com/accounts/o8/id';
126 $openid->required = array('namePerson/first', 'namePerson/last',
128 header('Location: ' . $openid->authUrl());
133 $userId = $openid->validate() ? $openid->identity : ''
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 8 * program logs the user in with Google's Federated Login API (OpenID), fetches
16 * This code makes use of a popup ui extension to the OpenID protocol. Instead
27 require_once 'lib/lightopenid/openid.php';
118 $openid = new LightOpenID(); variable
119 $userId = $openid->identity;
121 // This section performs the OpenID dance with the normal redirect. Use it
124 $openid->identity = 'https://www.google.com/accounts/o8/id';
125 $openid->required = array('namePerson/first', 'namePerson/last',
127 header('Location: ' . $openid->authUrl());
132 $userId = $openid->validate() ? $openid->identity : ''
    [all...]

Completed in 99 milliseconds