- 项目清单
全部,
我试图通过使用 LUA 连接到 Notion API,但是 api.notion.com 的握手失败,而它适用于例如。google.com
当使用以下参数将其包装在 SSL 中时,通过 TCP 的连接也可以
local params = {
mode = "client",
protocol = "tlsv1",
verify = "none",
options = "all",
}
我执行的步骤(host = api.notion.com)
conn=socket:connect( host, 443)
--> 给确定ssl.wrap(conn, params)
--> 确定succes,err =
conn:dohandshake() --> 不行
conn:dohandshake 不返回成功,但错误消息为空(如果结果为假,它通常应该有一个错误消息)
知道这里发生了什么吗?
亲切的问候,
标记