我正在使用Django LDAP身份驗證。默認情況下,我們將在settings.py
中提供LDAP設置,以便LdapBackend
文件可以訪問settings.py
文件以獲取LDAP憑證。但在我的情況下,我需要LdapBackend.py
文件來查看一個單獨的json文件的LDAP設置。我該怎麼做?Django Ldap設置
感謝
我正在使用Django LDAP身份驗證。默認情況下,我們將在settings.py
中提供LDAP設置,以便LdapBackend
文件可以訪問settings.py
文件以獲取LDAP憑證。但在我的情況下,我需要LdapBackend.py
文件來查看一個單獨的json文件的LDAP設置。我該怎麼做?Django Ldap設置
感謝
你可以import json在settings.py
和read the credentials from a JSON file。
您需要加載json文件,然後使用json模塊進行讀取。 json.load()將立即加載整個文件並將其轉換爲python對象。
import json
with open("filename.json") as json_file:
ldap_stuff = json.load(json_file)