aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingShing <JingShingLai@gmail.com>2022-11-10 20:42:41 +0800
committerGitHub <noreply@github.com>2022-11-10 20:42:41 +0800
commit1a01191e27545e9dae5255d59c920b6da5b236f4 (patch)
treea8ff5be4d26baef31b3408820dfb6c17f9558f20
parent2505f39e28177452a92426f3b60d8edbe6ed1b14 (diff)
Add username and password in ngrok.
-rw-r--r--modules/ngrok.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/ngrok.py b/modules/ngrok.py
index e506accb..10d2179f 100644
--- a/modules/ngrok.py
+++ b/modules/ngrok.py
@@ -1,6 +1,7 @@
from pyngrok import ngrok, conf, exception
def connect(token, port, region):
+ account = None
if token == None:
token = 'None'
else:
@@ -13,10 +14,10 @@ def connect(token, port, region):
auth_token=token, region=region
)
try:
- if account:
- public_url = ngrok.connect(port, pyngrok_config=config, auth=account).public_url
- else:
+ if account == None:
public_url = ngrok.connect(port, pyngrok_config=config).public_url
+ else:
+ public_url = ngrok.connect(port, pyngrok_config=config, auth=account).public_url
except exception.PyngrokNgrokError:
print(f'Invalid ngrok authtoken, ngrok connection aborted.\n'
f'Your token: {token}, get the right one on https://dashboard.ngrok.com/get-started/your-authtoken')