文件名称:node-freeipa:使用 nodejs 的 FreeIPA API 使用者
文件大小:57KB
文件格式:ZIP
更新时间:2024-08-23 23:34:07
JavaScript
node-freeipa 使用 Freeipa 服务器 JSON_RPC API 的模块。 安装 $ npm i --save node-freeipa 用法 首先导入模块并配置它,需要用户和密码才能对 API 进行身份验证。 const ipa = require ( 'node-freeipa' ) const opts = { server : "ipaserver.yourdomain" , auth : { user : 'someuser' , pass : 'someuserpassword' } } ; ipa . configure ( opts ) ; 然后调用所需的方法,下面调用 json_metadata 返回 freipa 服务器提供的所有方法。 // Calling the method ipa . json_metadata . t
【文件预览】:
node-freeipa-master
----.gitignore(69B)
----.eslintrc(250B)
----package.json(1KB)
----package-lock.json(142KB)
----src()
--------freeipa.js(1KB)
--------lib()
----SECURITY.md(254B)
----.travis.yml(114B)
----.devcontainer()
--------Dockerfile(840B)
--------devcontainer.json(985B)
----.github()
--------workflows()
----license(1KB)
----readme.md(3KB)
----.gitattributes(29B)
----test()
--------unit()
--------smokes()
--------fixtures()
--------bootstrap.spec.js(293B)
----.editorconfig(147B)