@Override
protected OrcidProfile extractUserProfile(String body) {
OrcidProfile profile = new OrcidProfile();
for(final String attribute : OAuthAttributesDefinitions.orcidDefinition.getAllAttributes()) {
profile.addAttribute(attribute, XmlHelper.get(body, attribute));
}
return profile;
}
@Override