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