Google Appscript 可以从 LDAP 服务器获取信息吗?
Can Google Appscript fetch information from a LDAP server?
我需要根据 Google Sheet 中存储的数据从 LDAP 服务器获取大量信息。 google appscript 有任何 library/module 这样做吗?
如果可以在 appscript 中执行 shell 命令,例如:
ldapsearch -H ldap://ldap.org.website.com -x -D cn=root -w secret -LLL -b "o=myhost" cn=root
那样就容易多了。您知道对此有任何解决方法吗?
您无权访问 Apps 脚本中的 shell。 App Script 确实有 HTTP 和 JDBC 服务。您需要 运行 这些服务之一作为您的 LDAP 服务器的桥梁。
HTTP to LDAP:
https://serverfault.com/questions/372112/is-there-a-simple-ldap-to-http-gateway-out-there
JDBC/LDAP driver:
http://www.openldap.org/jdbcldap/
我需要根据 Google Sheet 中存储的数据从 LDAP 服务器获取大量信息。 google appscript 有任何 library/module 这样做吗?
如果可以在 appscript 中执行 shell 命令,例如:
ldapsearch -H ldap://ldap.org.website.com -x -D cn=root -w secret -LLL -b "o=myhost" cn=root
那样就容易多了。您知道对此有任何解决方法吗?
您无权访问 Apps 脚本中的 shell。 App Script 确实有 HTTP 和 JDBC 服务。您需要 运行 这些服务之一作为您的 LDAP 服务器的桥梁。
HTTP to LDAP:
https://serverfault.com/questions/372112/is-there-a-simple-ldap-to-http-gateway-out-thereJDBC/LDAP driver:
http://www.openldap.org/jdbcldap/