1
基本上我想這樣做(Python),但在藥劑:如何使用Elixir(或Erlang)向受Kerberos保護的站點發出HTTP GET請求?
import requests
from requests_kerberos import HTTPKerberosAuth, OPTIONAL
kerberos_auth = HTTPKerberosAuth(mutual_authentication=OPTIONAL)
r = requests.get("http://example.org", auth=kerberos_auth)
我知道I can just do:
HTTPotion.get "http://example.org"
但我不能找到一個例子(與HTTPotion或任何其他藥劑庫)是支持Elixir(或Erlang)的Kerberos協商
正在制定一個命令行調用curl唯一的路徑嗎?
你爲什麼期望它已經被實現? 'HTTPotion'具有['ibrowse'](https://github.com/cmullaparthi/ibrowse)作爲http後端,後者不支持'Basic',AFAIK之外的任何認證。 – mudasobwa
我不希望HTTPottion擁有它,但我確實希望某種解決方案可用(可能與Elixir或Erlang的其他一些http客戶端可以使用?) – Luxspes
命令行調用curl是唯一的在elixir/erlang中使用全功能的http客戶端的方法? https://gist.github.com/wolves/3b13903ef8c8322b191c3510334cff90 – Luxspes