Iam, использующий worklight 6.0, и у меня есть специальный тест безопасности для адаптера.Невозможно получить атрибуты из объекта userIdentity в клиенте worklight
In the loginModule, im adding few custom attributes for the userIdentity
public UserIdentity createIdentity(String loginModule) {
HashMap<String, Object> customAttributes = new HashMap<String, Object>();
customAttributes.put("AuthenticationDate", new Date());
customAttributes.put("userIdentity", USERIDENTITY);
UserIdentity identity = new UserIdentity("CustomAuthenticatorRealm", USERNAME, null, null, customAttributes, PASSWORD);
return identity;
}
In the client side,
var attrs = WL.Client.getUserInfo("CustomAuthenticatorRealm", "attributes");
Sometimes Iam getting the attributes and sometimes as null.
Please help me on this.
Iam, проходящий процесс аутентификации. eventhen, im не удалось получить attrs var – user2967626