/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/ |
README | 5 "lib" contains the necessary OAuth and OpenID libraries to talk to the Chrome 6 Web Store Licensing API and Google's OpenID endpoint.
|
popuplib.js | 16 // PopupManager is a library to facilitate integration with OpenID 25 // (the openid.ns parameter) and the extensions based on what 27 // OpenID libraries can often discover these properties 55 'identifier_select' : 'http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select', 56 'namespace2' : 'http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0' 152 // var openidParams = { realm : 'openid.realm', returnToUrl : 'openid.return_to', 153 // opEndpoint : 'openid.op_endpoint', onCloseHandler : myLoginCheckFunction, 156 // Here extensions include any OpenID extensions that you support. For instance, 161 // 'openid.ax.ns' : 'http://openid.net/srv/ax/1.0' [all...] |
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...] |
NOTICE | 74 (Cf. ../lib/lightopenid/openid.php):
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/ |
README | 5 "lib" contains the necessary OAuth and OpenID libraries to talk to the Chrome 6 Web Store Licensing API and Google's OpenID endpoint.
|
popuplib.js | 16 // PopupManager is a library to facilitate integration with OpenID 25 // (the openid.ns parameter) and the extensions based on what 27 // OpenID libraries can often discover these properties 55 'identifier_select' : 'http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select', 56 'namespace2' : 'http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0' 152 // var openidParams = { realm : 'openid.realm', returnToUrl : 'openid.return_to', 153 // opEndpoint : 'openid.op_endpoint', onCloseHandler : myLoginCheckFunction, 156 // Here extensions include any OpenID extensions that you support. For instance, 161 // 'openid.ax.ns' : 'http://openid.net/srv/ax/1.0' [all...] |
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...] |
NOTICE | 74 (Cf. ../lib/lightopenid/openid.php):
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/ |
openid.php | 3 * This class provides a simple interface for OpenID (1.1 and 2.0) authentication. 8 * Sign-on with OpenID is a two step process: 11 * $openid = new LightOpenID; 12 * $openid->identity = 'ID supplied by user'; 13 * header('Location: ' . $openid->authUrl()); 19 * $openid = new LightOpenID; 20 * echo $openid->validate() ? 'Logged in.' : 'Failed'; 26 * $openid->realm = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST']; 27 * $openid->returnUrl = $openid->realm . $_SERVER['REQUEST_URI'] [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/ |
openid.php | 3 * This class provides a simple interface for OpenID (1.1 and 2.0) authentication. 8 * Sign-on with OpenID is a two step process: 11 * $openid = new LightOpenID; 12 * $openid->identity = 'ID supplied by user'; 13 * header('Location: ' . $openid->authUrl()); 19 * $openid = new LightOpenID; 20 * echo $openid->validate() ? 'Logged in.' : 'Failed'; 26 * $openid->realm = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' . $_SERVER['HTTP_HOST']; 27 * $openid->returnUrl = $openid->realm . $_SERVER['REQUEST_URI'] [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/ |
hello-php.zip | |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/ |
main.py | 44 userid OpenID of the user you are checking access for. 75 userid: The OpenID of the user to check. 115 # server requires an OpenID 119 # just use a default OpenID which will never return YES. 133 # Force the OpenID login endpoint to be for Google accounts only, since 134 # the license server doesn't support any other type of OpenID provider.
|
README | 30 with OpenID and check the license status of your account
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/ |
main.py | 45 userid OpenID of the user you are checking access for. 77 userid: The OpenID of the user to check. 118 # server requires an OpenID 122 # just use a default OpenID which will never return YES. 136 # Force the OpenID login endpoint to be for Google accounts only, since 137 # the license server doesn't support any other type of OpenID provider.
|
README | 30 with OpenID and check the license status of your account
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/ |
HelloLicenseServlet.java | 3 * program logs the user in with OpenID, fetches their license state with OAuth,
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/com/example/ |
HelloLicenseServlet.java | 3 * program logs the user in with OpenID, fetches their license state with OAuth,
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-java/ |
HelloLicenseServlet.java | 7 * program logs the user in with OpenID, fetches their license state with OAuth,
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/ |
PluginObject.cpp | 900 NPIdentifier openId = browser->getstringidentifier("open"); 921 if (!browser->invoke(npp, documentObject, openId, openArgs, 2, &result)) { [all...] |