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