我正在尝试让 Zapier 中的 WebHooks 在 F# 中非常简单地工作
let wc = new System.Net.WebClient()
System.Net.ServicePointManager.SecurityProtocol <- System.Net.SecurityProtocolType.Ssl3
let result = wc.DownloadString("WEB HOOK URL GOES HERE")
printfn "%s" result
它只是超时。所有 webhook 都是“https”一些文档: https ://zapier.com/blog/how-use-zapier-webhooks/
有没有人让它工作和/或可以看到我做错了什么?