Could someone please explain LDAP?

前端 未结 10 1434
旧巷少年郎
旧巷少年郎 2021-01-30 20:01

I often hear things like \"Can we load our employee info using LDAP?\" Yet, the title \"Lightweight Directory Access Protocol\" makes me think of it as a protocol rather than a

10条回答
  •  甜味超标
    2021-01-30 20:43

    LDAP is a protocol for querying user directories. For example, Active Directory or Novell eDirectory both support LDAP. It is also, to a degree a syntax for doing such queries, like how SQL is a querying language for querying databases.

    An LDAP command could look like

    (givenName=Mike)

    And it would return all Mikes in the directory.

提交回复
热议问题