class %OAuth2.Utils
extends %RegisteredObject
Utility methods for OAuth 2.0 support.
This class is used internally by InterSystems IRIS. You should not make direct
use of it within your applications. There is no guarantee made about either
the behavior or future operation of this class.
Parameters
|
Properties
|
Methods
|
Queries
|
Indices
|
ForeignKeys
|
Triggers
|
|
|
29
|
|
|
|
|
classmethod Base64UrlDecode(text As %String)
as %Binary
Decode base64url encoded string
classmethod Base64UrlEncode(bin As %Binary)
as %String
Encode binary value using base64url encoding
classmethod CheckScope(tokenScope As %String, scope As %String)
as %OAuth2.Error
Check that scope is subset of valid scopes for this token
classmethod CommaToList(str As %String)
as %List
Convert a comma separated list to a $list
classmethod FindLastKid(jwks As %String)
as %Integer
classmethod GetSupportedAlgorithms(Output sigalgs As %List, Output encalgs As %List, Output keyalgs As %List)
deprecatedclassmethod IsAlgEC(alg As %String)
as %Boolean
Check if specified algorithm is EC algorithm
This method is deprecated. Use the IsAlgEC method in %Net.JSON.JWA instead.
deprecatedclassmethod IsAlgRSA(alg As %String)
as %Boolean
Check if specified algorithm is RSA algorithm
This method is deprecated. Use the IsAlgRSA method in %Net.JSON.JWA instead.
deprecatedclassmethod IsAlgSymmetric(alg As %String)
as %Boolean
Check if apecified algorithm is symmetric
This method is deprecated. Use the IsAlgSymmetric method in %Net.JSON.JWA instead.
classmethod ListToComma(list As %List)
as %String
Convert a $list to comman separated list
classmethod ObjectToJSON(object As %DynamicAbstractObject)
as %Status
Output JSON object to the current device
classmethod SelectLanguage(uiLocales As %String, domain As %String)
as %String
Select the language for Authentication Class localization.
uiLocales is the value of the ui_locales request parameter.
The return value is the selected language code.
Call looks like:
Set language=##class(%OAuth2.Utils).SelectLanguage(properties.RequestProperties.GetAt("ui_locales"),domain)