public function Github_Api_User::getKeys in Bibliography Module 7.2
Get the authenticated user public keys. Requires authentication
Return value
array list of public keys of the user
File
- modules/
CiteProc/ Github/ Api/ User.php, line 132
Class
- Github_Api_User
- Searching users, getting user information and managing authenticated user account information.
Code
public function getKeys() {
$response = $this
->get('user/keys');
return $response['public_keys'];
}