forked from googlesamples/identity-toolkit-php
-
Notifications
You must be signed in to change notification settings - Fork 0
License
buryni/identity-toolkit-php
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is the PHP client library for Google Identity Toolkit services. Sample usage ===================== require_once __DIR__ . '/vendor/autoload.php'; $jsonConfig = json_decode(file_get_contents("gitkit-server-config.json"), true); $gitkitClient = new Gitkit_Client($jsonConfig); // ---- upload account ----- $hashKey = "\x01\x02\x03"; $gitkitClient->uploadUsers('HMAC_SHA1', $hashKey, createNewUsers($hashKey)); // --- verify gitkit token ---- $user = $gitkitClient->validateToken("eyJhb..."); // ---- get account info by user identifier ---- $user = $gitkitClient->getUserById("1234"); // ---- download account ---- $iterator = $gitkitClient->getAllUsers(3); while ($iterator->valid()) { $user = $iterator->current(); // $user is a Gitkit_Account object $iterator->next(); } // ---- delete account ---- $gitkitClient->deleteUser('1234'); function createNewUsers($hashKey) { $allUsers = array(); $gitkitUser = new Gitkit_Account(); $gitkitUser->setEmail("[email protected]"); $gitkitUser->setUserId("1234"); $salt = "\05\06\07"; $password = '1111'; $gitkitUser->setSalt($salt); $gitkitUser->setPasswordHash(hash_hmac('sha1', $password . $salt, $hashKey, true)); array_push($allUsers, $gitkitUser); $gitkitUser = new Gitkit_Account(); $gitkitUser->setEmail('[email protected]'); $gitkitUser->setUserId('5678'); $salt = "\15\16\17"; $password = '5555'; $gitkitUser->setSalt($salt); $gitkitUser->setPasswordHash(hash_hmac('sha1', $password . $salt, $hashKey, true)); array_push($allUsers, $gitkitUser); return $allUsers; }
About
No description, website, or topics provided.
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- PHP 100.0%