Ruby中的LDAP访问
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ruby中的LDAP访问相关的知识,希望对你有一定的参考价值。
require 'rubygems' require 'net/ldap' username = '' password = '' ldaphost = '' basedn='' ldap = Net::LDAP.new(:host => ldaphost, :base => basedn) filter = Net::LDAP::Filter.eq('uid', username) ldap.search(:filter => filter) {|entry| username = entry.dn} ldap.auth(username, password) if ldap.bind print "YEAP"; else print "NOPE"; end
以上是关于Ruby中的LDAP访问的主要内容,如果未能解决你的问题,请参考以下文章
在 Grails 和 SpringSecurity 中访问 Oracle Internet Directory (OID) 中的嵌套 LDAP 角色