如何在 Python 中使用 pyngrok 获取 ngrok https URL

How to Get ngrok https URL with pyngrok in Python

我如何编写 Python 程序来自动执行 ngrok 连接?我试过使用 pyngrok,但我想显示一个 https URL,它总是 returns http.

Per the pyngrok docs,默认开启两条隧道,一条http,一条https。如果您只想要 https 隧道,只需使用 bind_tls=True,它将返回。

from pyngrok import ngrok

https_tunnel = ngrok.connect(bind_tls=True)

如果你想知道pyngrok如何做到这一点,its code is open source