Child pages
  • JSAuthenticateResult
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »


Method Summary
String #getAttributeValue(alias)
Get attribute value
String[] #getAttributeValues(alias)
Get an array of attribute values

Method Details
getAttributeValue

String getAttributeValue (alias)

Get attribute value
Parameters
{String} alias
Returns
Sample
var email = authenticateResult.getAttributeValue('email')
getAttributeValues

String[] getAttributeValues (alias)

Get an array of attribute values
Parameters
{String} alias
Returns
Sample
var namesArray = authenticateResult.getAttributeValues('names')
for (var i = 0; i < namesArray.length; i++) { 
	application.output(namesArray[i]); 
}
  • No labels