Quantcast
Channel: 4月, 2021 | mebee
Viewing all articles
Browse latest Browse all 10

Ruby LDAPのデータなしの属性のデータを全て取得する

$
0
0

Rubyでnet-ldapを使用してLDAPのデータなしの属性のデータを全て取得するまでの手順を記述してます。Rubyのバージョンは3.0.0となります。

環境

  • OS CentOS 7.9.2009 (Core)
  • Ruby 3.0.0

Filter設定

net-ldapを使用して、例えば「mail」属性で、データが存在するものは、以下のfilterで取得できますが、

@filter = Net::LDAP::Filter.eq("mail", "*")

「mail」属性に値が、存在しないもの場合は、「~(チルダ)」を使用して取得します。

@filter = ~Net::LDAP::Filter.eq("mail", "*")
The post Ruby LDAPのデータなしの属性のデータを全て取得する first appeared on mebee.

Viewing all articles
Browse latest Browse all 10

Trending Articles