为MacOS设置LDAP时Python脚本的问题



我正在尝试在运行Monterey 12.3的Macbook Pro上设置Google安全LDAP。

request.appendData_(NSData.dataWithBytes_length_(CONFIG,
len(CONFIG))) TypeError: Expecting byte-buffer, got str

查看指南中的脚本:

#!/usr/bin/python
from OpenDirectory import ODNode, ODSession, kODNodeTypeConfigure
from Foundation import NSMutableData, NSData
import os
import sys
# Reading plist
GOOGLELDAPCONFIGFILE = open(sys.argv[1], "r")
CONFIG = GOOGLELDAPCONFIGFILE.read()
GOOGLELDAPCONFIGFILE.close()
# Write the plist
od_session = ODSession.defaultSession()
od_conf_node, err = ODNode.nodeWithSession_type_error_(od_session, kODNodeTypeConfigure, None)
request = NSMutableData.dataWithBytes_length_(b'x00'*32, 32)
request.appendData_(NSData.dataWithBytes_length_(CONFIG, len(CONFIG)))
response, err = od_conf_node.customCall_sendData_error_(99991, request, None)
# Edit the default search path and append the new node to allow for login
os.system("dscl -q localhost -append /Search CSPSearchPath /LDAPv3/ldap.google.com")
os.system("bash -c 'echo -e "TLS_IDENTITYtLDAP Client" >> /etc/openldap/ldap.conf' ")

我试图在谷歌上找到一些解决方案(例如。encode, b'..)但我真的不明白。谢谢你的帮助。

好的,我找到了解决方案,实际上这里是早些时候发布的。

在Macos上运行python脚本创建google ldap配置错误

相关内容

  • 没有找到相关文章

最新更新