1

我正在尝试让 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/

有没有人让它工作和/或可以看到我做错了什么?

4

1 回答 1

2

Zapier 联合创始人在这里,我们使用的是 ELBSecurityPolicy-2014-01,您可以在此处阅读http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/elb-security-policy-table.html。有一个默认为不受支持的 SSL 协议/密码的盒子/库并不罕见。

于 2014-06-01T22:23:19.463 回答