/**
  * Get a unique identifier for the user represented by the idtoken.
  *
  * @return string A unique identifier.
  */
 public function get_uniqid()
 {
     $oid = $this->claim('oid');
     return !empty($oid) ? $oid : parent::get_uniqid();
 }