mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[GH-ISSUE #457] Need support for ldapadd #174
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#174
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Evantage-WS on GitHub (Feb 20, 2023).
Original GitHub issue: https://github.com/lldap/lldap/issues/457
Hi,
With ldapsearch I can search the LDAP server, but when using ldapadd, I do get an error:
ldapadd command:
Contents of lldap.lpif
Any idea if this is a problem in my command or is lldap something missing for supporting ldapadd? (and ldapdelete)
Maybe there is another way to add users via a script?
Thanks
@nitnelave commented on GitHub (Feb 20, 2023):
Hi,
Yes, full support for the LDAP protocol is not the goal, in particular the editing parts of the protocol. The main API to add/edit/delete users is GraphQL. You can either use the web frontend for manual actions, or use any graphql library in any language to script it (see the schema at the root: graphql.schema).
You'll need to get a token to authenticate. I need to add some more docs for that, but in the meantime check this issue: https://github.com/nitnelave/lldap/issues/375
Cheers!
@Evantage-WS commented on GitHub (Feb 20, 2023):
Thanks