...
代码块 | ||||
---|---|---|---|---|
| ||||
var paramMap = { //分页大小(一次查询用户信息条数),若小于等于0,则不分页,当为空时默认分页10 pageSize : 800, //“用户名”应该使用的AD域属性字段 usernameKey : "sAMAccountName", //“用户别名”应该使用的AD域属性字段 userAliasKey : "displayName", //“用户描述”应该使用的AD域属性字段 userDesKey : "mobile", //同步时的默认密码 defaultPassword : "123456" } //以下内容不需要配置 var paramStr = JSON.stringify(paramMap); connector.remoteInvoke("LDAPSAuthenicationModuleADAuthModule", "synchronizeUser", [paramStr]); |
...